import type { ZipArrayType } from "../types/array/zip"; /** * Creates a new array by combining elements from multiple arrays at corresponding positions * @param {T} arrays List of arrays to combine * @returns {ZipArrayType} New array with combined elements from each input array * @example * zip([1, 2], ['a', 'b']); // [[1, 'a'], [2, 'b']] * zip([1, 2, 3], ['a', 'b']); // [[1, 'a'], [2, 'b']] */ export declare const zip: (...arrays: T) => ZipArrayType;