import { Point } from '../..'; export declare const computeSVGPath: (points: { p1: Point; p2: Point; }, curvature: number) => string; export declare const createConnectionPath: (svg: SVGSVGElement, points: { p1: Point; p2: Point; }, curvature?: number) => void;