import { Book } from "./typings";
import { TocElement } from "./utils/types";
export declare type EPubChapterId = TocElement["id"];
export declare function readEpub(path: string): Promise<Book.BookWithMeta>;
export declare function createEpub(options: any, output?: string): Promise<void>;
