import type { Vec } from "@thi.ng/vectors"; export declare enum IntersectionType { NONE = 0, PARALLEL = 1, COINCIDENT = 2, COINCIDENT_NO_INTERSECT = 3, INTERSECT = 4, INTERSECT_OUTSIDE = 5 } export interface IntersectionResult { type: IntersectionType; /** * If present, one or more intersection points. */ isec?: Vec[]; det?: number; alpha?: number; beta?: number; inside?: boolean; } export declare const NONE: IntersectionResult; //# sourceMappingURL=api.d.ts.map