import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { TitleSubtitleInterface } from "../../interfaces/interfaces/TitleSubtitleInterface"; import { WidgetCardTableInterfaceProps } from "../Widget"; export interface ModuleCardTableInterfaceProps extends PropsInterface, TitleSubtitleInterface { fluid?: boolean; card?: boolean; list: WidgetCardTableInterfaceProps[]; } export declare class ModuleCardTable extends PureComponent { constructor(props: any); render(): JSX.Element; }