import JSZip from "https://cdn.jsdelivr.net/npm/jszip/+esm"; import { AbstractFile } from "./fileAttachment.js"; export declare class ZipArchive { private readonly _; readonly filenames: string[]; constructor(archive: JSZip); static from(buffer: ArrayBuffer): Promise; file(path: string): ZipArchiveEntry; } declare class ZipArchiveEntry extends AbstractFile { href: string; private readonly _; private _url; constructor(object: JSZip.JSZipObject); url(): Promise; blob(): Promise; arrayBuffer(): Promise; text(): Promise; json(): Promise; stream(): Promise>; } export {};