import { IStreamAndLength, IZip, Zip } from "./zip"; export declare class ZipExploded extends Zip { readonly dirPath: string; static loadPromise(dirPath: string): Promise; private constructor(); freeDestroy(): void; entriesCount(): number; hasEntries(): boolean; hasEntry(entryPath: string): boolean; getEntries(): Promise; entryStreamPromise(entryPath: string): Promise; }