import { Point } from '../Models'; export declare const makeSVGPath: (start: Point, end: Point) => { path: string; c1: Point; c2: Point; }; export declare const findPointOnCurve: (p: number, start: Point, c1: Point, c2: Point, end: Point) => Point;