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): Array; export declare function pointInPolygon(point: Point, polygon: Polygon): boolean;