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