/** * Zips together 2 input arrays via either the provided zipper function, * or by performing a standard zipping operation. */ declare const zip: (arr1: any[], arr2: any[], zipper: Function) => any[]; export default zip;