pub mod cfb;
pub mod chart;
pub mod comments;
pub mod crc32;
pub mod diagram;
pub mod document;
pub mod encoding;
pub mod error;
pub mod hash;
pub mod inflate;
pub mod markdown;
pub mod mce;
pub mod model;
pub mod opc;
pub mod package;
pub mod pml;
pub mod ppt;
pub mod presentation;
pub mod properties;
pub mod slide;
pub mod text;
pub mod xml;
pub mod zip;
pub use chart::{ChartData, Series};
pub use comments::{Comment, CommentAuthor};
pub use diagram::{DiagramData, DiagramItem};
pub use document::{Document, DocumentSeed, ImageRef, ObjectRef, Slide, SlideRef, SlideSection};
pub use error::{Error, Result};
pub use markdown::MarkdownOptions;
pub use model::{Content, Paragraph, Run, Shape, SlideContent, TextBody};
pub use package::{Package, PackageDefects, PackageSeed, Part};
pub use presentation::{Presentation, Section};
pub use properties::{AppProperties, CoreProperties};
pub use slide::SlideReport;
pub use text::{ExtractReport, TextOptions};