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

//#region src/compat/_internal/ValueKeyIteratee.d.ts
type ValueKeyIteratee<T> = ((value: T, key: string) => unknown) | IterateeShorthand<T>;
//#endregion
export { ValueKeyIteratee };