/** * Converts the characters "&", "<", ">", '"', and "'" in `string` to their * corresponding HTML entities. * * @param {string} str The string to escape. * @returns {string} Returns the escaped string. * @example * * escape('fred, barney, & pebbles'); // => 'fred, barney, & pebbles' */ declare const _default: (str?: string) => string; export default _default;