import { GraphVertex } from "./GraphVertex"; export declare class GraphEdge { private startVertex; private endVertex; private weight; readonly Weight: number; readonly EndVertex: GraphVertex; readonly StartVertex: GraphVertex; constructor(startVertex: GraphVertex, endVertex: GraphVertex, weight?: number); }