import { type IAsyncParallel, type IParallelEnumerable } from "../../types"; type ZipFunc = { (first: IAsyncParallel, second: IAsyncParallel): IParallelEnumerable<[TFirst, TSecond]>; (first: IAsyncParallel, second: IAsyncParallel, resultSelector: (x: TFirst, y: TSecond) => TResult): IParallelEnumerable; }; export declare const zip: ZipFunc; export {};