//! Core traits for TUI components
//!
//! This module provides the foundational traits that enable interactive
//! UI components with focus management and mouse click support.
//!
//! # Traits
//!
//! - [`Focusable`] - For components that can receive keyboard focus
//! - [`Clickable`] - For components that respond to mouse clicks
//! - [`Container`] - For components that manage child components
//! - [`PopupContainer`] - Extension of Container for popup dialogs
pub use ;
pub use ;
pub use ;