import { type Iteratee } from '../internal/iteratee.js'; /** * Count occurrences of items by a key selector. * * @param arr - Input array * @param iteratee - Function or property path string that returns a key for each item * @returns Object mapping key to count * * @example * countByHot(users, 'role') * countByHot(users, user => user.department) */ export declare function countByHot(arr: readonly T[], iteratee: Iteratee): Record; //# sourceMappingURL=countBy.d.ts.map