//! spec-ai-tui: A terminal user interface framework built from scratch on crossterm
//!
//! This crate provides a complete TUI framework with:
//! - Geometry primitives (`Rect`, `Point`, `Size`)
//! - Cell-based buffer system with diff rendering
//! - Terminal abstraction over crossterm
//! - Constraint-based layout engine
//! - Widget system with stateful and interactive traits
//! - Async event loop integrated with tokio
//! - Application framework with Elm-inspired architecture
// Re-export commonly used types
pub use App;
pub use ;
pub use Event;
pub use ;
pub use ;
pub use ;
pub use Terminal;
pub use Widget;