import React from 'react'; declare type ProgressCircleProps = { percent?: number; stroke?: string; index?: number; className?: string; }; export declare const ProgressCircle: ({ percent, index, stroke, ...props }: ProgressCircleProps) => JSX.Element; declare type ProgressCircleGroupsProps = { size?: number; strokeWidth?: number; stroke?: string; onClick?: () => void; children?: React.ReactNode; className?: string; }; export declare const ProgressCircleGroups: ({ size, strokeWidth, ...props }: ProgressCircleGroupsProps) => JSX.Element; export {};