import { Edge } from "graphlabs.core.graphs"; import { Color } from "../types/Color"; import { EdgeShape } from "../enums/EdgeShape"; import { Point } from "../types/Point"; export declare class GeometricEdge { edge: T; shape: EdgeShape; width: number; color: Color; inPoint: Point; outPoint: Point; weightLabel: string; label: string; constructor(edge: T); }