import type { FileCollection } from '../FileCollection.ts'; import type { Options } from '../Options.ts'; import type { ZipFileContent } from '../ZipFileContent.ts'; /** * Create a FileCollection from a zip * @param collection - The FileCollection to append the files to. * @param zipContent - The content of the zip file, which can be a Uint8Array, ArrayBuffer, Blob, or ReadableStream. * @param options - Options for creating the FileCollection. */ export declare function fromZip(collection: FileCollection, zipContent: ZipFileContent, options?: Options): Promise; //# sourceMappingURL=from_zip.d.ts.map