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