/**
 * Merges together the values of each of the arrays with the values at the
 * corresponding position.
 */
declare function zip(arr: any): any[];
export default zip;
