export interface ConversionResult { success: boolean; content?: Buffer; format: string; error?: string; metadata?: { [key: string]: any; }; } export interface IFormatConverter { canConvert(documentType: string, targetFormat: string): boolean; convert(content: string | Buffer, options?: any): Promise; getSupportedFormats(): string[]; getName(): string; } export interface FormatConverterOptions { [key: string]: any; } //# sourceMappingURL=interfaces.d.ts.map