import { Data } from './types'; export declare const getValueByPath: (obj: Data | undefined, path: string | undefined) => T | undefined; export declare const setValueByPath: (obj: Data | undefined, path: string | undefined, value: Data[keyof Data], { addPath }?: { addPath?: boolean; }) => void;