/** * 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 { AnimationBuilder } from '@angular/animations'; import { ElementRef, EventEmitter, Renderer2, TemplateRef } from '@angular/core'; import { Observable } from 'rxjs'; import { VtsGraphGroupNode, VtsGraphNode } from './interface'; import * as i0 from "@angular/core"; interface Info { x: number; y: number; width: number; height: number; } export declare class VtsGraphNodeComponent { private el; private builder; private renderer2; node: VtsGraphNode | VtsGraphGroupNode; noAnimation?: boolean; customTemplate?: TemplateRef<{ $implicit: VtsGraphNode | VtsGraphGroupNode; }>; readonly nodeClick: EventEmitter; triggerClick(event: MouseEvent): void; animationInfo: Info | null; initialState: boolean; private animationPlayer; constructor(el: ElementRef, builder: AnimationBuilder, renderer2: Renderer2); makeAnimation(): Observable; makeNoAnimation(): void; getAnimationInfo(): Info; nodeTransform(): { x: number; y: number; }; computeCXPositionOfNodeShape(): number; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};