export declare function getValueByPath(obj: any, path: string): any;
export declare function setValueByPath(obj: any, path: string, value: any): void;
export declare function deleteValueByPath(obj: any, path: string): void;
