//! ANSI rendering: dirty-tracked incremental updates and full redraws.
pub use AnsiRenderer;
pub use DirtyTracker;
pub use render_line;
// `RenderCache` and the Grid-path render helpers are only used by tests that
// drive a raw `Grid` (render/tests.rs and a few screen tests). Production code
// goes through `AnsiRenderer`, which consumes `RenderCache` directly from `core`.
pub use RenderCache;
pub use render_line_with;
pub use ;