/** * Safely gets the value at path of object. If the resolved value is undefined, the defaultValue is returned. * * @example * const object = { a: [{ b: { c: 3 } }] }; * get(object, 'a.0.b.c') // 3 * get(object, 'a.b.c', 'default') // 'default' */ export declare function get(object: any, path: string | (string | number)[], defaultValue?: T): T;