/**
 * Extract a list of property values.
 */
declare function pluck(obj: any, propName: any): Record<string, any>;
export default pluck;
