//#region src/object/mapKeys.d.ts /** * Creates an object with the same values as object and keys 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 * mapKeys({ a: 1, b: 2 }, (value, key) => key + value); // { 'a1': 1, 'b2': 2 } */ declare function mapKeys(obj: T, iteratee: (value: T[keyof T], key: keyof T, obj: T) => K): Record; //#endregion export { mapKeys }; //# sourceMappingURL=mapKeys.d.cts.map