//! File Splitter Library
//!
//! Provides intelligent file splitting capabilities for large documents based on file type.
//! Supports text files, CSV/tabular data, JSON, and source code with configurable
//! chunk sizes and logical boundary preservation.
// Re-export main types and the FileSplitter
pub use *;
pub use FileSplitter;