import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { TitleSubtitleOInterface } from "../../interfaces/interfaces/TitleSubtitleInterface"; export interface WidgetUserInterfaceProps extends PropsInterface, TitleSubtitleOInterface { fluid?: boolean; card?: boolean; avatar: string; footer?: any; size?: number; } export declare class WidgetUser extends PureComponent { constructor(props: any); render(): JSX.Element; }