import { type HTMLAttributes } from "react";
export type AvatarSize = "xs" | "sm" | "md" | "lg";
export interface AvatarProps extends HTMLAttributes {
size?: AvatarSize;
src?: string;
alt?: string;
fallback?: string;
}
export declare const Avatar: import("react").ForwardRefExoticComponent>;