/** * Gets the value at path of object. If the resolved value is undefined, * the defaultValue is returned in its place. * Drop-in replacement for lodash/get. */ export default function get(object: any, path: string | string[], defaultValue?: any): any;