import { type GlobalPoint, type LocalPoint } from "@excalidraw/math"; import type { Bounds } from "@excalidraw/common"; export type LineSegment

= [P, P]; export declare function getBBox

(line: LineSegment

): Bounds; export declare function doBBoxesIntersect(a: Bounds, b: Bounds): boolean; export declare function isPointOnLine

(l: LineSegment

, p: P): boolean; export declare function isPointRightOfLine

(l: LineSegment

, p: P): boolean; export declare function isLineSegmentTouchingOrCrossingLine

(a: LineSegment

, b: LineSegment

): boolean; export declare function doLineSegmentsIntersect

(a: LineSegment

, b: LineSegment

): boolean;