export declare function zip(values: T[][] | unknown): T[][]; export declare function zip(left: T[] | unknown, right: U[] | unknown): Array<[T, U]>;