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