import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; export interface AvatarUserInterfaceProps extends PropsInterface { name: string; image?: string; fluid?: boolean; color?: string; size?: number; subTitle: string; } export declare class AvatarUser extends PureComponent { constructor(props: any); static defaultProps: { size: number; }; render(): JSX.Element; }