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