/** * Sanitizes the given unsafe, untrusted HTML fragment, and returns HTML text that is safe to add to * the DOM in a browser environment. */ export declare function sanitizeHtml(defaultDoc: any, unsafeHtmlInput: string): string;