/** * Returns the property if it exists in the object * @param p string or array describing the property to get (eg result.friends.list) * @param o the object to extract the data out */ export declare const deepGet: (p: string | string[], o: any) => any;