Angular 2+ is typescript .. so you need to install @types/lodash from npm using the command below
npm install --save @types/lodash
then you need to import that in component like:
import * as lodash from 'lodash';
you can use lodash like
lodash.find() etc...