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