/** * Maps over an object's values, returning a new object with the same keys * but transformed values. */ export declare function mapObject, U>(obj: T, fn: (value: T[keyof T], key: string) => U): { [K in keyof T]: U; }; //# sourceMappingURL=utils.d.ts.map