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