import type fflate from "fflate"; export declare const unzip: (data: Uint8Array, opts?: fflate.AsyncUnzipOptions) => Promise; export type AsyncZippableFile = Uint8Array | ArrayBuffer | AsyncZippable | string | [Uint8Array | ArrayBuffer | string | AsyncZippable, fflate.AsyncZipOptions]; export interface AsyncZippable { [path: string]: AsyncZippableFile; } export declare const zip: (data: AsyncZippable, opts?: fflate.AsyncZipOptions) => Promise>;