/** * Conversion of the SVG basic shape elements (rect, circle, ellipse, line, * polyline, polygon) into the same subpath/segment vocabulary used by . * Once here, every element is treated uniformly downstream. */ import { SvgSubpath } from "./svg-models"; type Attrs = { [k: string]: string; }; /** Convert a basic-shape element to subpaths; returns [] for unsupported tags. */ export declare function shapeToSubpaths(tag: string, attrs: Attrs): SvgSubpath[]; export {};