import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { ProgressBarInterfaceProps } from "./ProgressBar"; export interface ProgressExtendsLabelInterfaceProps extends PropsInterface { value: number; oldValue: number; progress: ProgressBarInterfaceProps[]; title: string; subTitle?: string; } export declare class ProgressExtendsLabel extends PureComponent { constructor(props: any); render(): JSX.Element; }