//! Radio widget — Group, Pair, and Dot variants.
//!
//! Self-contained:
//! - `types` — `RadioOption`, `RadioGroupView`, `RadioPairView`, `RadioDotView`,
//! `DotShape`, `RadioConfig`, `RadioRenderKind`.
//! - `state` — `RadioState` (selected_idx).
//! - `theme` — `RadioTheme` trait + `DefaultRadioTheme`.
//! - `style` — `RadioStyle` / `DefaultRadioStyle` + `RadioPairStyle` / `DefaultRadioPairStyle`.
//! - `settings` — `RadioSettings` bundle.
//! - `render` — `draw_radio` dispatcher.
//! - `input` — `register_radio` helper.
pub use ;
pub use RadioState;
pub use ;
pub use ;
pub use RadioSettings;
pub use draw_radio;
pub use register_radio;