declare type postProcessOptions = { optimizeFonts: boolean; optimizeImages: boolean; }; declare type renderOptions = { getFontDefinition?: (url: string) => string; }; declare function processHTML(html: string, data: renderOptions, options: postProcessOptions): Promise; export default processHTML;