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