import { Position } from '@xyflow/system'; import { JSX } from 'solid-js'; export interface EdgeAnchorProps extends JSX.CircleSVGAttributes { position: Position; centerX: number; centerY: number; radius?: number; onMouseDown: JSX.CircleSVGAttributes["onMouseDown"]; onMouseEnter: JSX.CircleSVGAttributes["onMouseEnter"]; onMouseOut: JSX.CircleSVGAttributes["onMouseOut"]; type: string; } export declare function EdgeAnchor(_p: EdgeAnchorProps): JSX.Element; //# sourceMappingURL=EdgeAnchor.d.ts.map