import { HTMLAttributes, ImgHTMLAttributes } from "react"; import "./Avatar.css"; export interface AvatarProps extends HTMLAttributes { alt?: string; id?: string; imgProps?: ImgHTMLAttributes; size?: "small" | "medium" | "large"; sizes?: string; src?: string; srcSet?: string; title?: string; } export declare const Avatar: import("react").ForwardRefExoticComponent>;