/// import { ImgProps } from "../util/Img"; import { WithTheme } from "../types"; export declare type AvatarProps = WithTheme<{ height: number; width: number; name: string; role: string; }> & ImgProps; export declare function Avatar({ height, width, name, role, imgSrc, imgNode, imgAlt, ...props }: AvatarProps): JSX.Element;