export * from './pick.js'; export * from './omit.js'; type ValueOfRecord> = R extends Record ? V : never; export declare const mapObjectValues: , V_Out>(obj: O_In, mapValue: (key: keyof O_In, val: ValueOfRecord) => V_Out) => { [K in keyof O_In]: V_Out; }; export declare const mergeDeep: >(...objs: T[]) => T; export type PartialDeep = { [P in keyof T]?: T[P] extends Record ? PartialDeep : T[P]; }; //# sourceMappingURL=index.d.ts.map