import type { FunctionalComponent, HTMLAttributes } from 'vue'
import type { Position } from '../../types'

interface Props extends HTMLAttributes {
  position: Position
  centerX: number
  centerY: number
  radius?: number
  type: string
}
declare const EdgeAnchor: FunctionalComponent<Props>
export default EdgeAnchor
