/**
 * 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;
declare function dlv(object: object | undefined, key: string | Array<string | number>, defaultValue?: any): any;
