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

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