export interface Point { x: number; y: number; } export type Polygon = Array; export declare function computeConvexHull

(points: Readonly>): Array

; export declare function computeConvexHullSorted

(points: Readonly>): Array

; export declare function comparePoints(a: Point, b: Point): number;