//#region src/compat/_internal/ListIterator.d.ts
type ListIterator<T, R> = (value: T, index: number, collection: ArrayLike<T>) => R;
//#endregion
export { ListIterator };