import { PartialShallow } from "./PartialShallow.js";

//#region src/compat/_internal/ListIteratee.d.ts
type ListIteratee<T> = ((value: T, index: number, collection: ArrayLike<T>) => unknown) | (PropertyKey | [PropertyKey, any] | PartialShallow<T>);
//#endregion
export { ListIteratee };