import { SVGCommand, CommandM, CommandL, CommandH, CommandV, CommandZ, CommandQ, CommandT, CommandC, CommandS, CommandA } from 'svg-pathdata/lib/types'; import { SVGPathData } from 'svg-pathdata'; import Point from './Point'; export declare type CommandType = SVGCommand['type']; export declare type Command = { type: CommandType; } & Omit & Omit & Omit & Omit & Omit & Omit & Omit & Omit & Omit & Omit; export default class PathParser extends SVGPathData { control: Point; start: Point; current: Point; command: Command; readonly commands: Command[]; private i; private previousCommand; private points; private angles; constructor(path: string); reset(): void; isEnd(): boolean; next(): Command; getPoint(xProp?: string, yProp?: string): Point; getAsControlPoint(xProp?: string, yProp?: string): Point; getAsCurrentPoint(xProp?: string, yProp?: string): Point; getReflectedControlPoint(): Point; makeAbsolute(point: Point): Point; addMarker(point: Point, from?: Point, priorTo?: Point): void; addMarkerAngle(point: Point, angle: number): void; getMarkerPoints(): Point[]; getMarkerAngles(): number[]; } //# sourceMappingURL=PathParser.d.ts.map