import { IFormatConverter, ConversionResult } from './interfaces'; export declare class FormatConverterRegistry { private converters; register(converter: IFormatConverter): void; unregister(converterName: string): boolean; getConverter(name: string): IFormatConverter | undefined; findConverter(documentType: string, targetFormat: string): IFormatConverter | undefined; getAllConverters(): IFormatConverter[]; getSupportedFormats(): string[]; isFormatSupported(format: string): boolean; convert(documentType: string, targetFormat: string, content: string | Buffer, options?: any): Promise; getConverterCount(): number; clear(): void; } //# sourceMappingURL=registry.d.ts.map