import React from 'react'; import { ComponentColor, IComponentBaseProps } from '../types'; export type RadialProgressProps = React.HTMLAttributes & IComponentBaseProps & { value: number; size?: string; thickness?: string; color?: ComponentColor; }; declare const RadialProgress: React.ForwardRefExoticComponent & IComponentBaseProps & { value: number; size?: string | undefined; thickness?: string | undefined; color?: "neutral" | "primary" | "secondary" | "accent" | "ghost" | "info" | "success" | "warning" | "error" | undefined; } & React.RefAttributes>; export default RadialProgress;