/** * 针对decodeURIComponent做了异常捕获,decodeURIComponent('a=%')会出现异常 * * @param str 编码过的字符串 * @returns */ export declare function unescape(str: string): string;