/**
 * get "nested" object property
 */
declare function get(obj: Record<string, any>, prop: string): any;
export default get;
