import { type KitStyled } from "../tokens.js"; export interface AvatarProps extends KitStyled { /** The person or account this stands for; both the initials and the tint * come from it, so the same name is the same disc everywhere. */ name?: string; size?: "sm" | "md" | "lg"; } export declare function Avatar({ name, size, style }: AvatarProps): import("react").JSX.Element;