export declare function checkPath(obj: any, path: string): boolean;
export declare function getByPath(obj: any, path: string): any;
export declare function setByPath(obj: any, path: string, value: any): void;
export declare function getChangedPaths(obj1: any, obj2: any, basePath?: string): string[];
