import { FileCollection } from '../FileCollection.ts'; import type { ZipFileContent } from '../ZipFileContent.ts'; export interface FromIumOptions { /** * If set, the mimetype of the zip file will be validated against the stored mimetype. * @default undefined */ validateMimetype?: string; } /** * Creates a FileCollection from an IUM zip file. * @param zipContent - The content of the IUM zip file, which can be a Uint8Array, ArrayBuffer, Blob, or ReadableStream. * @param options - the options for fromIum. * @returns A Promise that resolves to a FileCollection containing the data from the IUM file. */ export declare function fromIum(zipContent: ZipFileContent, options: FromIumOptions): Promise; //# sourceMappingURL=from_ium.d.ts.map