import { Prop } from '../typings/types'; interface Pluck {

(p: P, list: ArrayLike>): T[];

(p: P): (list: ArrayLike>) => T[]; } /** * Returns a new list by plucking the same named property off all objects in the list supplied. * * @param {String} key The key name to pluck off of each object. * @param {Array} arr The array to consider. * @return {Array} The list of values for the given key. * @example * * pluck('a')([{a: 1}, {a: 2}]); //=> [1, 2] * pluck(0)([[1, 2], [3, 4]]); //=> [1, 3] */ declare const _default: Pluck; export default _default;