//! Configuration-menu dialogs.
//!
//! The entry point is [`RootMenu`], a seven-item top-level menu
//! pushed onto the [`crate::modal::ModalStack`] when the user opens
//! the configuration menu (`^A m`). Each item drills into a child
//! dialog (serial-port setup, line endings, modem control,
//! write/read profile, screen options). T15 replaces the last three
//! placeholder rows with real dialogs: [`ConfirmDialog`] (reused for
//! Write/Read profile) and [`ScreenOptionsDialog`].
pub use ConfirmDialog;
pub use LineEndingsDialog;
pub use ModemControlDialog;
pub use PlaceholderDialog;
pub use RootMenu;
pub use ScreenOptionsDialog;
pub use SerialPortSetupDialog;