import { EdgeProps, Edge } from '@xyflow/react'; import { OntologyLinkKind } from './types.js'; /** Data the parent passes through to the ReactFlow edge-renderer. */ export interface OntologyFlowEdgeData { type: OntologyLinkKind; label: string; attention: 'focused' | 'normal' | 'unfocused'; [key: string]: unknown; } export declare const OntologyEdge: import('react').MemoExoticComponent<({ id, sourceX, sourceY, targetX, targetY, sourcePosition, targetPosition, selected, data, }: EdgeProps>) => import("react/jsx-runtime").JSX.Element>; //# sourceMappingURL=OntologyEdge.d.ts.map