/**
* Escapes HTML special characters (&'`"<>).
* @param {string} str String to escape.
* @return {string} Escaped string.
* @example
* ```js
* import {utils} from 'metronic-extension';
*
* utils.escapeHTML('I think this is good.');// -> I <b>think</b> this is good.
* utils.escapeHTML('John "Johnny" Smith');// -> John "Johnny" Smith
* ```
*/
declare const _default: (str: string) => string;
export default _default;