/** 重新打包 ZIP 文件 ,向其中添加或删除文件 */ export declare function rezip(zip: Blob | ArrayBuffer | Uint8Array, op: { /** 要添加的文件列表,如果有同名文件会覆盖 */ addFiles?: { name: string; input: File | Blob | Response; }[]; /** 要删除的文件名列表 */ deleteFiles?: string[]; }): Promise; //# sourceMappingURL=rezip.d.ts.map