import React from "react"; export declare const VIEWBOX_CENTER_X = 50; export declare const VIEWBOX_CENTER_Y = 50; type Coordinate = { x: number; y: number; }; type PathProps = { dashRatio: number; pathRadius: number; center?: Coordinate; style?: object; classes?: string; }; declare const Path: ({ dashRatio, pathRadius, style, classes, center }: PathProps) => React.JSX.Element; export default Path; //# sourceMappingURL=Path.d.ts.map