export interface ExtractedEpubChapter { readonly title: string; readonly content: string; } export interface ExtractedEpub { readonly title?: string; readonly chapters: ReadonlyArray; } export declare function extractEpub(buffer: Buffer): Promise; //# sourceMappingURL=epub.d.ts.map