import React, { ImgHTMLAttributes } from "react";
interface AvatarProps extends ImgHTMLAttributes<HTMLImageElement> {
  /**
   * Whether the image should be fully rounded
   */
  isFullyRounded?: boolean;
  /**
   * Image size. Defaults to medium
   */
  size?: "min" | "medium" | "max";
}
declare const Avatar: React.FC<AvatarProps>;
export default Avatar;
