import { Vertex } from "graphlabs.core.graphs"; import { Color } from "../types/Color"; import { Point } from "../types/Point"; export declare class GeometricVertex { vertex: T; backgroundColor: Color; borderColor: Color; borderWidth: number; label: string; wave: string; radius: number; center: Point; constructor(vertex: T); }