//! Excel XLSB (.xlsb) file format reader
//!
//! This module provides functionality to parse Microsoft Excel XLSB files,
//! which are Excel 2007+ binary format files stored in ZIP containers.
//! The implementation follows the MS-XLSB specification.
/// Error types for XLSB parsing
/// XLSB record parsing utilities
/// Workbook parsing implementation
/// Worksheet parsing implementation
/// Cell value parsing and representation
/// XLSB cells reader
/// Shared parsing utilities
pub use ;
pub use XlsbWorkbook;
pub use XlsbWorksheet;
pub use XlsbCell;