import { type Iteratee } from '../internal/iteratee.js'; /** * Extract a property value from each object in an array. * * @param key - Property name or path to extract * @param arr - Array of objects * @returns Array of extracted values * * @example * pluckFast('name', [{ name: 'alice' }, { name: 'bob' }]); * // ['alice', 'bob'] * * @example * // Deep path * pluckFast('profile.email', users); */ export declare function pluckFast(key: K, arr: readonly T[]): T[K][]; export declare function pluckFast(key: Iteratee, arr: readonly T[]): R[]; //# sourceMappingURL=pluck.d.ts.map