/** * 修复了encodeURIComponent遗漏的几种编码情况:[!'()*] * * @param str 准备编码的字符串 * @returns */ export declare function escape(str: string): string;