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