/*!
* Sanitize an HTML string
* @param {String} input The HTML string to sanitize
* @param {Boolean} returnNodes If true, returns HTML nodes instead of a string
* @return {String|NodeList} The sanitized string or nodes
*/
export declare function sanitizeHTML(input: string, returnNodes?: boolean): string | NodeListOf;