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