import { default as React } from 'react'; type Coordinates = { x: number; y: number; }; type EdgeProps = { color?: string; markerStart?: string; markerEnd?: string; source?: Coordinates; target?: Coordinates; path?: string; variant?: string; }; type EdgeSVGProps = Pick, Exclude, 'target'>>; declare const Edge: React.FC; export default Edge;