import { Nil } from '../interfaces'; /** * Creates an array of grouped elements, the first of which contains the first elements of the given arrays, the second of which contains the second elements of the given arrays, and so on. * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 2,861 bytes * - Micro-dash: 155 bytes */ export declare function zip(array1: T1[], array2: T2[]): Array<[T1, T2]>; export declare function zip(array1: T1[], array2: T2[], array3: T3[]): Array<[T1, T2, T3]>; export declare function zip(array1: T1[], array2: T2[], array3: T3[], array4: T4[]): Array<[T1, T2, T3, T4]>; export declare function zip(...arrays: Array): T[][]; export declare function zip(...arrays: Array): Array>;