//! Domain-level structures shared across the OCR pipeline.
//!
//! This module groups the higher-level prediction and orientation types that
//! represent OCR-specific concepts used throughout the crate, as well as
//! task-level adapters that combine models with task configurations.
pub use *;
pub use *;
pub use TextRegion;
// Note: structure module is not re-exported with * to keep explicit separation.
// Tasks exports: LayoutDetectionElement, TableCellDetection (detection outputs)
// Structure exports: LayoutElement, TableCell (enriched results)
// Use domain::structure::* explicitly when needed.
pub use *;