import { type Iteratee } from '../internal/iteratee.js'; /** * Index array items by a key selector. * Later items overwrite earlier items with the same key. * * @param arr - Input array * @param iteratee - Function or property path string that returns a key for each item * @returns Object mapping key to item * * @example * indexByHot(users, 'id') * indexByHot(users, user => user.email) */ export declare function indexByHot(arr: readonly T[], iteratee: Iteratee): Record; //# sourceMappingURL=indexBy.d.ts.map