/**
 * Extract a list of property values.
 */
declare function pluck(list: any, key: any): any[];
export default pluck;
