import type { FunctionalComponent } from 'vue'
import type { BaseEdgeProps } from '../../types'

/**
 * The base edge is a simple wrapper for svg path
 * You can use the base edge in your custom edges and just pass down the necessary props
 */
declare const BaseEdge: FunctionalComponent<BaseEdgeProps>
export default BaseEdge
