/** * Creates an object composed of the object properties that satisfy the predicate. * The predicate is invoked with two arguments: (value, key). */ declare const pickBy: >(object: T, predicate: (value: any, key: string) => boolean) => Partial; export default pickBy;