/** SVG path hit testing and bounds (M/L/H/V/C/Q/Z subset). */ export interface PathBounds { x: number; y: number; width: number; height: number; } export declare function pathContainsPoint(d: string, localX: number, localY: number, strokeWidth?: number): boolean; export declare function pathBounds(d: string): PathBounds; export { parsePathSegments } from './pathGeometry';