/** * Zips two iterables */ export declare function zip(first: AsyncIterable): (second: AsyncIterable) => AsyncGenerator<[T, T], void, unknown>;