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