import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; export interface ProgressRadialInterfaceProps extends PropsInterface { value: number; strokeWidth: number; size: number; color?: string; } export declare class ProgressRadial extends PureComponent { constructor(props: any); render(): JSX.Element; }