type Segment = [string, ...number[]];
type PathSegments = Segment[];
interface PathCurve {
    d: string;
    segments: PathSegments;
}
export declare function parsePathD(d: string): PathCurve;
export declare function calculateSubpath(path: PathCurve, from: number, to: number): string;
export {};
