import type { PathArray, LengthFactory, PathLengthFactoryOptions } from '../types'; /** * Returns a {x,y} point at a given length * of a shape, the shape total length and * the shape minimum and maximum {x,y} coordinates. */ export declare function pathLengthFactory(pathInput: string | PathArray, distance?: number, options?: Partial): LengthFactory;