type PluckOptions<TRecord, TKey extends keyof TRecord> = {
    field: TKey;
    records: Array<TRecord>;
};
/**
 * @description
 * Use this helper to extract an array of a single field's values from all records in the record set.
 */
export declare const pluck: <TRecord, TKey extends keyof TRecord>(options: PluckOptions<TRecord, TKey>) => Array<TRecord[TKey]>;
export {};
