/** * Get the value of an item inside an object * @param obj The source object * @param path The path to the object * @param defaultValue A default value to be returned * * @example * U.get({ a: 1, b: 2 }, 'b') // => 2 */ export declare function get(obj: object, path: string, defaultValue?: any): any; //# sourceMappingURL=get.d.ts.map