import type { ObjectIterator } from 'lodash'; /** * Recursively maps the values of an object using a callback function. */ export declare const deepMapValues: (obj: TObj | null | undefined, callback: ObjectIterator) => { [K in keyof TObj]: any; }; //# sourceMappingURL=deepMapValues.d.ts.map