type AvatarTone = 'highlight' | 'critical' | 'success' | 'neutral'; type Props = { showLabel?: boolean; size?: 'extraSmall' | 'small' | 'medium' | 'large'; showInitials?: boolean; image?: string | null; name?: string | null; /** * Semantic background tone mapped to design tokens. * Ignored if `hexColor` is provided. */ tone?: AvatarTone; /** * Explicit background color (e.g. hex). Takes precedence over `tone`. */ hexColor?: string; }; declare const Avatar: ({ showLabel, size, showInitials, image, name, tone, hexColor, }: Props) => import("react/jsx-runtime").JSX.Element; export { Avatar };