import { Point } from './point'; import { ICurve } from './icurve'; export declare class ClosestPointOnCurve { static closestPoint(curve: ICurve, a: Point, hint: number, low: number, high: number): number; }