/** * 反转escape * * @param {string} str 字符串 * @return {string} */ declare const unescape: (str: any) => string; export default unescape;