import { IntersectionExt } from './Events.js'; /** * A custom sorting comparison function used for ordering intersections during raycasting. * @param a - The first intersection to compare. * @param b - The second intersection to compare. * @returns A negative value if `a` should precede `b`, a positive value if `b` should precede `a`, or zero if their order is indeterminate. */ export type RaycasterSortComparer = (a: IntersectionExt, b: IntersectionExt) => number; //# sourceMappingURL=RaycasterManager.d.ts.map