import { ImgHTMLAttributes } from "react";
export type AvatarSize = "xxs" | "xs" | "sm" | "md";
export interface AvatarProps extends ImgHTMLAttributes {
blurhash?: string | null;
/** If an image is missing, show initials instead */
initials?: string;
/** The size of the Avatar */
size?: AvatarSize;
src?: string;
performResize?: boolean;
}
/** A circular Avatar component containing an image or initials */
export declare const Avatar: ({ src, initials, size, blurhash, performResize, }: AvatarProps) => import("react/jsx-runtime").JSX.Element;