import { SVGProps } from 'react'; import * as React from 'react'; export interface RadialProgressProps extends SVGProps { size?: number | string; duration?: number; value: number | number[]; strokeWidth?: number | string; strokeLinecap?: 'round' | 'butt' | 'square'; progressOutlineSize?: number; progressOutlineColor?: string; baseColor?: string; } /** * @deprecated * This component is deprecated and is no longer supported. */ export declare const RadialProgress: React.FC;