import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; export interface WidgetInterfaceProps extends PropsInterface { isRead?: boolean; fluid?: boolean; card?: boolean; } export declare class Widget extends PureComponent { constructor(props: any); render(): JSX.Element; }