/// import stream from 'stream'; export declare type EntryContent = stream.Readable | string | Buffer; export interface ZipEntry { archivePath: string; content: EntryContent | (() => EntryContent) | (() => PromiseLike); } //# sourceMappingURL=ZipEntry.d.ts.map