import type { BivariantCallable, Parameters_, Return_ } from '../../function/index.js'; export type DeepMapValues_ = TObject extends Parameters_[0] ? Return_ : { [k in keyof TObject]: DeepMapValues_; }; export declare function deepMapValues unknown>>(object: TObject, mapping: TMapping, pathPrefix?: (string | number)[]): DeepMapValues_; //# sourceMappingURL=deepMapValues.d.ts.map