import { ZipReader } from '@zip.js/zip.js'; import type { ZipFileContent } from '../ZipFileContent.ts'; /** * Creates a ZipReader from the provided zip file content. * @param buffer - The content of the zip file, which can be a Uint8Array, ArrayBuffer, Blob, or ReadableStream. * @returns A ZipReader instance that can be used to read the zip file. */ export declare function getZipReader(buffer: ZipFileContent): ZipReader; export declare const UNSUPPORTED_ZIP_CONTENT_ERROR = "Unsupported zip content type.\nIf you passed a Node.js Stream convert it to Web Stream.\nIf you passed a (binary) string, decode it to Uint8Array."; //# sourceMappingURL=get_zip_reader.d.ts.map