import * as JSZip from 'jszip'; import { Constructor } from '../types'; import { Binary } from '../utils'; export declare class ZipObject { private readonly zipObject; get name(): string; set name(value: string); get isDirectory(): boolean; constructor(zipObject: JSZip.JSZipObject); getContentText(): Promise; getContentBase64(): Promise; getContentBinary(outputType: Constructor): Promise; }