import { FC } from 'react'; export interface ProgressCirclePropsStrict { /** String of class names to add to component */ className?: string; /** Color variants */ color?: 'default' | 'blue' | 'green' | 'red' | 'yellow'; /** Value of filled bar without percent sign. E.g. */ progress?: number; } export interface ProgressCircleProps extends ProgressCirclePropsStrict { [propName: string]: any; } export declare const ProgressCircle: FC;