/** * React hook to escape special characters in a given string * * @param {string} inp string to escape non word characters * @returns {string | undefined} escaped string */ declare const useEscaper: (inp?: string) => string | undefined; export default useEscaper;