declare module 'golden-path' {
export const get: (path: string, object: Object|Array<any>) => any;
export const update: (path: string, newValue: any, object: Object|Array<any>) => any;
export const v: (value: any) => any;
export const clearPathResolverCache: () => void;
}