/** * Create an object from a list of keys and values */ export declare const zipObj: (keys: readonly K[], values: readonly T[]) => { [P in K]: T; };