import { HTMLAttributes } from "react";
import { Variant } from "../../@types/Colors";
import { CSSUnit } from "../../@types/Generic";
interface IRadialProgress extends HTMLAttributes {
value: number;
thickness?: `${number}${CSSUnit}`;
size?: `${number}${CSSUnit}`;
variant?: Variant;
fill?: boolean;
}
export declare const RadialProgress: import("react").ForwardRefExoticComponent>;
export {};