import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { TitleSubtitleOInterface } from "../../interfaces/interfaces/TitleSubtitleInterface"; import { ColorsTypes } from "../../interfaces/types/ColorsTypes"; export interface WidgetCardTableInterfaceProps extends PropsInterface, TitleSubtitleOInterface { fluid?: boolean; card?: boolean; icon: string; leftTop: string; leftBottom: string; leftBottomColor?: ColorsTypes; } export declare class WidgetCardTable extends PureComponent { constructor(props: any); render(): JSX.Element; }