//! Text module - the core text manipulation type.
//!
//! This module provides the `Text` type which represents styled terminal text,
//! along with supporting types `Span`, `Lines`, and related enums.
// Re-export enums
pub use ;
// Re-export helper functions
pub use strip_control_codes;
// Re-export core types
pub use ;
pub use Lines;
pub use Span;
// ---------------------------------------------------------------------------
// Tests (kept here temporarily - will be moved to tests/ in Phase 3)
// ---------------------------------------------------------------------------
// Tests
// ---------------------------------------------------------------------------