export declare class PathResolver { private path; private parts; constructor(path: string); static create(path: string): PathResolver; static resolve(obj: any, path: string): any; get(obj: any): any; set(obj: any, val: any): void; }