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