//#region src/object/mapValues.d.ts /** * Creates an object with the same keys as object and values generated by running each own enumerable string keyed property through iteratee * @param obj - The object to iterate over * @param iteratee - The function invoked per iteration * @returns Returns the new mapped object * @example * mapValues({ a: 1, b: 2 }, (value) => value * 2); // { a: 2, b: 4 } */ declare function mapValues(obj: T, iteratee: (value: T[keyof T], key: keyof T, obj: T) => U): Record; //#endregion export { mapValues }; //# sourceMappingURL=mapValues.d.cts.map