/** * Remove script tags preventing potentially XSS attack * * @param {string} str - HTML scripts formed as string that is intended to be sanitized */ declare const removeScriptTags: (str: string) => string; export default removeScriptTags;