export * from './hull.js'; import { type Point, type Polygon } from './hull.js'; export declare function getPointsFromEl(el: HTMLElement): Array; export declare function makeHullFromElements(els: Array): Array; export declare function pointInPolygon(point: Point, polygon: Polygon): boolean;