export declare class DocumentConversionOnDemand { convertDocument( attachmentSysID?: string, targetFormatType?: string, nameForTargetFile?: string ): any; convertDocumentAsync( attachmentSysID?: string, targetFormatType?: string, nameForTargetFile?: string, conversionParameters?: Record ): any; convertHTML( html?: string, targetFormatType?: string, targetTable?: string, targetRecordSysId?: string, targetFileName?: string, headerFooterInfo?: Record, customFontSysId?: string, documentConfiguration?: Record ): any; convertToPDF(attachmentSysID?: string, nameForPDF?: string): any; convertToPDFAsync(attachmentSysID?: string, shouldCleanup?: boolean): any; convertToPDFV2( attachmentSysID?: string, nameForPDF?: string, conversionParameters?: Record ): any; getConversionStatus(requestID?: string): any; validateFunction(contentMap?: Record): any; constructor(); }