import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; export interface WidgetProgressCircleInterfaceProps extends PropsInterface { fluid?: boolean; card?: boolean; title: string; progress: number; color?: string; } export declare class WidgetProgressCircle extends PureComponent { constructor(props: any); render(): JSX.Element; }