/** * Cleans the given HTML so that it can be parsed by strict DOM parsers * (e.g. xmldom). * This does NOT mimic HtmlCleaner's behavior, although we hope it does. * @param html HTML markup */ export declare function cleanHtml(html: string): string;