import { type SVGProps } from 'react'; import type { AnnotationContextType } from '../types'; export type ConnectorProps = Pick & { /** Optional className to apply to container in addition to 'visx-annotation-connector'. */ className?: string; /** Connector type. */ type?: 'line' | 'elbow'; /** Color of the connector line. */ stroke?: string; /** Optional additional props. */ pathProps?: SVGProps; }; export default function Connector({ className, x: propsX, y: propsY, dx: propsDx, dy: propsDy, type, stroke, pathProps, }: ConnectorProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Connector.d.ts.map