/** * 安全获取对象深层属性 * 支持 a.b.c / a.0.b */ export declare function getValueByPath(obj: any, path?: string): any; /** * 安全设置对象深层属性(用于可编辑表格) */ export declare function setValueByPath(obj: any, path: string, value: any): void;