import * as THREE from "three"; import type { IPolygonData } from './types'; export declare class Polygon extends THREE.Object3D { private mesh; private linePositions; readonly type = "Polygon"; constructor(polygonData: IPolygonData); showLine(color?: THREE.ColorRepresentation): void; }