/** * Pluck an object via dot-notation from an object */ declare const pluckDeep: (key: string) => (obj: Object) => any; export default pluckDeep;