import { AsyncZippable, Unzipped } from 'fflate'; export declare function zipAsync(file: AsyncZippable): 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;