/**
* Safely get a dot-notated path within a nested object, with ability to
* return a default if the full key path does not exist or the value is
* undefined
*/export = dlv;
declarefunctiondlv(object: object | undefined, key: string | Array<string | number>, defaultValue?: any): any;