import { Constructor } from '../types'; import { Binary } from '../utils'; import { ZipObject } from './zipObject'; export declare class Zip { static load(file: Binary): Promise; private readonly zip; private readonly binaryFormat; private constructor(); getFile(path: string): ZipObject; setFile(path: string, content: string | Binary): void; isFileExist(path: string): boolean; listFiles(): string[]; export(outputType?: Constructor): Promise; }