import { Point } from "./point";
/** A polygon, composed of several Points. */
export declare class Polygon extends Array<Point> {
}
