import type { IAsyncEnumerable } from "../../types"; export declare const zipAsync: (first: AsyncIterable, second: AsyncIterable, resultSelector: (x: TFirst, y: TSecond) => Promise) => IAsyncEnumerable;