/// import { Readable } from 'stream'; export type AsyncEntry = () => Promise<{ name: string; stream: Readable; }>; export declare function createZipStream(entries: AsyncEntry[], options?: any | undefined): Readable;