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