/// Shared theme-aware UI styling helpers and status-display helpers.
/// A trait for UI components that enforces a standard rendering interface.
pub use Component;
/// A trait for UI pages that enforces a standard rendering interface.
pub use Page;
/// Immutable data required to draw a single UI frame.
pub use RenderContext;
/// Renders a complete frame including status bar, content area, and footer.
pub use render;
/// UI-owned cache store shared by render and scroll-metric paths.
pub use RenderCacheStore;