import type { FileItem } from '../../FileItem.ts'; import type { Options } from '../../Options.ts'; /** * Extracts file items from a zip file buffer. * @param buffer - The zip file as ArrayBuffer. * @param sourceUUID - The UUID of the source from which the zip file was created. * @param options - Options to filter the files. * @returns An async generator that yields file item. * @yields FileItem - The file item extracted from the zip. */ export declare function fileItemsFromZip(buffer: ArrayBufferLike | ArrayBufferView, sourceUUID: string, options?: Options): AsyncGenerator; //# sourceMappingURL=fileItemsFromZip.d.ts.map