import { ElementRef } from '@angular/core'; import { fmtNum } from '../shared/chart-utils'; import * as i0 from "@angular/core"; export interface TreeGraphNode { id: string; label: string; parentId?: string; value?: number; color?: string; } interface ProcessedNode { id: string; label: string; parentId?: string; value: number; depth: number; x: number; y: number; color: string; children: ProcessedNode[]; } interface TreeLink { parentId: string; childId: string; path: string; } export declare class TreeGraphComponent { data: import("@angular/core").InputSignal; height: import("@angular/core").InputSignal; width: import("@angular/core").InputSignal; colors: import("@angular/core").InputSignal; showLabels: import("@angular/core").InputSignal; showExport: import("@angular/core").InputSignal; svgEl: import("@angular/core").Signal | undefined>; exportMenuOpen: import("@angular/core").WritableSignal; hoveredNodeId: import("@angular/core").WritableSignal; tooltip: import("@angular/core").WritableSignal; computedTree: import("@angular/core").Signal<{ nodes: ProcessedNode[]; root: ProcessedNode | null; }>; computedNodes: import("@angular/core").Signal; computedLinks: import("@angular/core").Signal; onNodeHover(event: MouseEvent, node: ProcessedNode): void; toggleExportMenu(event: MouseEvent): void; closeExportMenu(): void; onExport(type: 'json' | 'csv' | 'svg' | 'pdf'): void; exportToCsv(): void; exportToJson(): void; exportToSvg(): void; exportToPdf(): void; readonly fmtNum: typeof fmtNum; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};