import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { TitleSubtitleInterface } from "../../interfaces/interfaces/TitleSubtitleInterface"; import { ProgressLabelInterfaceProps } from "../Progress"; import { ListSeparatorInterfacePropsVariant } from "../List"; export interface ModuleProgressContentInterfaceProps extends PropsInterface, TitleSubtitleInterface { fluid?: boolean; list: ModuleProgressContentInterfacePropsList[]; zebra?: boolean; variant?: ListSeparatorInterfacePropsVariant; } export interface ModuleProgressContentInterfacePropsList extends ProgressLabelInterfaceProps { separator?: boolean; styleContent?: any; } export declare class ModuleProgressContent extends PureComponent { constructor(props: any); render(): JSX.Element; }