//! Generic Renderers for `DemoEngine` Implementations
//!
//! Per specification SIMULAR-DEMO-002: These renderers are renderer-agnostic.
//! Both TUI and WASM use the SAME `DemoEngine` and produce SAME state sequences.
//!
//! # Architecture
//!
//! ```text
//! DemoEngine (from YAML)
//! ↓
//! ┌─────────────────────┐
//! │ GenericRenderer │
//! │ (trait-based API) │
//! └─────────────────────┘
//! ↓ ↓ ↓
//! TUI Impl WASM Impl SVG Impl
//! ```
pub use ;
pub use ;
pub use ;
pub use ;