import { AsyncZippable, Unzipped, ZipAttributes } from 'fflate'; export declare function zipAsync(file: AsyncZippable, options?: ZipAttributes): Promise; export declare function unzipAsync(data: Uint8Array): Promise; export declare function downloadZip({ staticUrl, zipName, zipDigest, parseJson, }: { staticUrl?: string; zipName: string; zipDigest?: string; parseJson?: boolean; }): Promise;