declare type Point = {
    x: number;
    y: number;
};
declare function convexHull(points: Point[]): Point[];
export { convexHull };
