import { IDocumentConverter } from '../types'; export declare class ConverterRegistry { private _converters; constructor(); register(format: string, converter: IDocumentConverter): void; /** * Gets a converter by its format. * @example * ```typescript * const converter = registry.get('docx'); * ``` */ get(format: string): IDocumentConverter | undefined; } //# sourceMappingURL=converter.registry.d.ts.map