/** 解压一个 zip 文件 */ export declare function unzip(data: Blob | ArrayBuffer | Uint8Array, options?: { files: string[]; decodeFileName?: (bytes: string[] | Uint8Array | Buffer) => string; }): Promise<{ [filePath: string]: Uint8Array; } | void>; //# sourceMappingURL=unzip.d.ts.map