import { NodeProps, Node } from '@xyflow/react'; import { OntologyNodeKind } from './types.js'; /** Data the parent passes through to the ReactFlow node-renderer. */ export interface OntologyFlowNodeData { name: string; description: string | undefined; type: OntologyNodeKind; attention: 'focused' | 'normal' | 'unfocused'; /** Optional status pill shown top-right (e.g. a validation flag). */ flag?: string; [key: string]: unknown; } export declare const OntologyNode: import('react').MemoExoticComponent<({ data, selected }: NodeProps>) => import("react/jsx-runtime").JSX.Element>; //# sourceMappingURL=OntologyNode.d.ts.map