/** * Parser for the SVG path `d` mini-language. * * Produces absolute subpaths over the exact segment vocabulary in svg-models. * Handles: M/m L/l H/h V/v C/c S/s Q/q T/t A/a Z/z, relative/absolute, * smooth-curve reflection, implicit repeated commands, and the quirky arc-flag * packing. Elliptical arcs are converted from SVG endpoint parametrization to * center parametrization so downstream code never re-derives it. */ import { SvgSubpath } from "./svg-models"; /** Parse an SVG path `d` attribute into absolute subpaths. */ export declare function parsePathData(d: string): SvgSubpath[];