import type { VNode } from 'preact'; import type { ProjectStructure } from '../../analyzer/project-structure'; import { NodeDetailsProps } from '../types'; interface ExtendedNodeDetailsProps extends NodeDetailsProps { fullGraphData: ProjectStructure; onChildNodeSelect: (nodeId: string) => void; } export declare function NodeDetails({ node, fullGraphData, onChildNodeSelect, }: ExtendedNodeDetailsProps): VNode; export {};