import { PathUtilService } from './path-util.service';
export declare class JsonUtilService {
    private pathUtilService;
    constructor(pathUtilService: PathUtilService);
    /**
     * Returns value of the property located in dot separated path of json.
     */
    getValueInPath(json: any, path: string): any;
}
