export interface IVertex {
    setLabel(s: string): any;
    getLabel(): string;
    updateCost(): any;
    getCost(): number;
    getObject(): any;
}
//# sourceMappingURL=IVertex.d.ts.map