import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { TableSimpleInterfaceColumn, TableSimpleInterfaceRow } from "../Table"; import { ProgressExtendsLabelInterfaceProps } from "../Progress"; import { TitleSubtitleInterface } from "../../interfaces/interfaces/TitleSubtitleInterface"; export interface ModuleProgressTableInterfaceProps extends PropsInterface, TitleSubtitleInterface { fluid?: boolean; card?: boolean; columns: TableSimpleInterfaceColumn[]; rows: TableSimpleInterfaceRow[]; styleContent?: any; progress: ProgressExtendsLabelInterfaceProps; } export declare class ModuleProgressTable extends PureComponent { constructor(props: any); render(): JSX.Element; }