import * as React from 'react'; type AvatarSize = 'small' | 'medium' | 'large' | 'extra-large'; interface AvatarProps { /** * Size of the avatar */ size?: AvatarSize; /** * Image source URL */ src?: string; /** * Initials to display (2 characters) when no image is provided */ initials?: string; /** * Alt text for the image */ alt?: string; /** * Custom className */ className?: string; /** * Custom style */ style?: React.CSSProperties; /** * Test ID for testing */ 'data-testid'?: string; } /** * Avatar component - Arbor Design System * * Displays a user avatar with support for images, initials, or a placeholder icon. * Features hover state with inner shadow effect. */ declare const Avatar: React.ForwardRefExoticComponent>; export { Avatar, type AvatarProps, type AvatarSize };