export * from "./hull";
import { type Point, type Polygon } from "./hull";
export declare function getPointsFromEl(el: HTMLElement): [Point, Point, Point, Point];
export declare function computeConvexHullFromElements(els: Array<HTMLElement>): Array<Point>;
export declare function pointInPolygon(point: Point, polygon: Polygon): boolean;
