/// import { SharedLinkProps, AccessorProps, AddSVGProps } from '../../../types'; export declare function pathHorizontalCurve({ source, target, x, y, percent, }: Required> & { percent: number; }): (link: Link) => string; export declare type LinkHorizontalCurveProps = AccessorProps & SharedLinkProps & { percent?: number; }; export default function LinkHorizontalCurve({ className, children, data, innerRef, path, percent, x, // note this returns a y value y, // note this returns an x value source, target, ...restProps }: AddSVGProps, SVGPathElement>): JSX.Element; //# sourceMappingURL=LinkHorizontalCurve.d.ts.map