import './style.scss'; import type { GraphNodeId, IARCProps, IGraphConnectionActions, IGraphEdge } from '@adam-sv/arc'; export interface IEdgeProps extends IARCProps { arrowHeadDirection?: string; arrowHeadPoints: string; connectionActions?: IGraphConnectionActions; edge: IGraphEdge; getClassName?: (edge: IGraphEdge) => string | undefined; pathD: string; } export declare function Edge({ arrowHeadDirection, arrowHeadPoints, className, connectionActions, edge, getClassName, overrideDefaultClassName, pathD, }: IEdgeProps): JSX.Element;