export type FieldValues = Record; export declare const setValueInObj: (object: FieldValues, path: string, value?: unknown) => FieldValues | undefined; export declare const getValueInObj: , K extends string>(obj: O, path: K) => import('../../../utils').TGetValue;