import { AllIterables } from '../AsyncSeq'; export declare class AsyncZipIterable implements AsyncIterable { private sources; constructor(sources: AllIterables[]); [Symbol.asyncIterator](): { next: () => Promise<{ value: undefined; done: boolean; } | { value: any[]; done: boolean; }>; return: () => Promise<{ value: undefined; done: boolean; }>; }; }