import { ParserFactory, ParserRegistry } from '../core/parser'; export type BuiltInParserName = 'epub' | 'mobi' | 'fb2' | 'pdf' | 'cbz'; export interface BuiltInParserEntry { readonly name: BuiltInParserName; readonly factory: ParserFactory; } export declare const builtInParsers: readonly BuiltInParserEntry[]; export declare function registerBuiltInParsers(target?: Pick): void; //# sourceMappingURL=builtins.d.ts.map