import type { GlobalPoint, LocalPoint, Polygon } from "./types"; export declare function polygon(...points: Point[]): Polygon; export declare function polygonFromPoints(points: Point[]): Polygon; export declare const polygonIncludesPoint: (point: Point, polygon: Polygon) => boolean; export declare const polygonIncludesPointNonZero: (point: Point, polygon: Point[]) => boolean; export declare const pointOnPolygon: (p: Point, poly: Polygon, threshold?: number) => boolean;