/**
 * To retrieve deeply nested value
 *
 * @param obj - To get value from
 * @param path - Path to desired value within object
 * @param defaultVal - Value to return if no value by with provided path
 * @returns Seek value
 */
declare function deepGet(obj: Obj, path: string[], defaultVal?: any): any;
export default deepGet;
