/**
 * Creates an object from array of keys and array of values.
 *
 * @example zipObject(['a', 'b'], [1, 2]) // => { a: 1, b: 2 }
 */
export declare function zipObject<K extends string | number | symbol, V>(keys: readonly K[], values: readonly V[]): Record<K, V>;
//# sourceMappingURL=zipObject.d.ts.map