/** * SVG path analysis utilities */ import { PathCommand } from '../types'; /** * Parses the 'd' attribute of a path element into command objects */ export declare function parsePathData(pathData: string): PathCommand[]; /** * Analyzes all paths in an SVG and returns their command structures */ export declare function analyzePaths(svgContent: Element | string): Map; /** * Gets statistics about paths in an SVG */ export declare function getPathStatistics(svgContent: Element | string): { totalPaths: number; totalCommands: number; commandTypes: Record; };