import { PureComponent } from "react"; import React from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { ProgressLabelInterfaceProps } from "../Progress"; import { TitleSubtitleInterface } from "../../interfaces/interfaces/TitleSubtitleInterface"; import { WidgetSparkLineInterfaceProps } from "../Widget"; export interface CardProgressStadisticsInterfaceProps extends PropsInterface, TitleSubtitleInterface { fluid?: boolean; footer?: any; header?: any; list: WidgetSparkLineInterfaceProps[]; progressBars: ProgressLabelInterfaceProps[]; zebraList?: boolean; zebraSpark?: boolean; } export declare class CardProgressStadistics extends PureComponent { render(): React.ReactNode; }