import { type GlobalPoint, type LocalPoint, type Polygon } from "@excalidraw/math"; import type { Curve } from "@excalidraw/math"; import type { Polyline, GeometricShape } from "./shape"; export declare const isPointOnShape: (point: Point, shape: GeometricShape, tolerance?: number) => boolean; export declare const isPointInShape: (point: Point, shape: GeometricShape) => boolean; export declare const isPointInBounds: (point: Point, bounds: Polygon) => boolean; export declare const pointOnCurve: (point: Point, curve: Curve, threshold: number) => boolean; export declare const pointOnPolyline: (point: Point, polyline: Polyline, threshold?: number) => boolean;