import type { ReadonlyVec } from "@thi.ng/vectors"; import { type IntersectionResult } from "./api.js"; /** * 2D only. Computes first intersection between line segment `a`,`b` and * polyline or polygon defined by `pts`. * * @param a * @param b * @param pts * @param closed */ export declare const intersectLinePolylineAll: (a: ReadonlyVec, b: ReadonlyVec, pts: ReadonlyVec[], closed?: boolean) => IntersectionResult; //# sourceMappingURL=line-poly.d.ts.map