/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { ChangeDetectorRef, ElementRef, NgZone, OnChanges, OnInit, SimpleChanges, TemplateRef } from '@angular/core'; import { VtsGraphEdge } from './interface'; import * as i0 from "@angular/core"; export declare class VtsGraphEdgeComponent implements OnInit, OnChanges { private elementRef; private ngZone; private cdr; edge: VtsGraphEdge; customTemplate?: TemplateRef<{ $implicit: VtsGraphEdge; }>; get id(): string; private el; private path; private readonly line; constructor(elementRef: ElementRef, ngZone: NgZone, cdr: ChangeDetectorRef); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; initElementStyle(): void; setLine(): void; setPath(d: string): void; setElementData(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }