import { Book } from '../core/types'; import { Exporter, ExportOptions, ExportSelection } from '../core/exporter'; export type { ExportOptions, ExportSelection } from '../core/exporter'; export declare class HTMLExporter implements Exporter { readonly format = "html"; readonly mediaType = "text/html"; readonly extension = ".html"; canExport(_book: Book, selection: ExportSelection): boolean; exportBook(book: Book, selection: ExportSelection, options?: ExportOptions): Promise; } export declare const htmlExporter: () => HTMLExporter; //# sourceMappingURL=html.d.ts.map