export declare function zip<T>(arr: T[] | unknown, ...others: unknown[]): Array<Array<T | unknown | null>>;
