/** * Escapes the `RegExp` special characters "^", "$", "\", ".", "*", "+", * "?", "(", ")", "[", "]", "{", "}", and "|" in `string`. * * @param {string} str The string to escape. * @returns {string} Returns the escaped string. * @example * * escapeRegExp('[test](utils)'); // => '\[test\]\(utils\)' */ declare const _default: (str?: string) => string; export default _default;