import { ElementRef } from '@angular/core'; import { ExportFormat } from '../shared/chart-export-menu.component'; import * as i0 from "@angular/core"; export interface OrgNode { id: string; name: string; title?: string; department?: string; avatarUrl?: string; icon?: string; children?: OrgNode[]; expanded?: boolean; } interface RenderNode { data: OrgNode; x: number; y: number; depth: number; hasChildren: boolean; expanded: boolean; } interface RenderLink { source: RenderNode; target: RenderNode; path: string; } export declare class OrgChartComponent { rootNode: import("@angular/core").InputSignal; height: import("@angular/core").InputSignal; nodeWidth: import("@angular/core").InputSignal; nodeHeight: import("@angular/core").InputSignal; orientation: import("@angular/core").InputSignal<"horizontal" | "vertical">; colors: import("@angular/core").InputSignal; showExport: import("@angular/core").InputSignal; private exportSvc; nodeClick: import("@angular/core").OutputEmitterRef; nodeToggle: import("@angular/core").OutputEmitterRef; container: import("@angular/core").Signal | undefined>; onExport(type: ExportFormat): void; containerWidth: import("@angular/core").WritableSignal; expandedState: import("@angular/core").WritableSignal>; chartId: string; get containerEl(): any; private destroyRef; constructor(); getColor(depth: number): string; getHandleTransform(): string; layout: import("@angular/core").Signal<{ nodes: RenderNode[]; links: RenderLink[]; bounds: { minX: number; maxX: number; minY: number; maxY: number; }; }>; nodes: import("@angular/core").Signal; links: import("@angular/core").Signal; svgWidth: import("@angular/core").Signal; svgHeight: import("@angular/core").Signal; translateX: import("@angular/core").Signal; translateY: import("@angular/core").Signal; generatePath(source: RenderNode, target: RenderNode, isVertical: boolean): string; toggleNode(node: RenderNode, event: MouseEvent): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};