/** Circular user chip. Empty state is the neutral-700→900 gradient disc used in the app header. */ export interface AvatarProps extends React.HTMLAttributes { size?: number } export function Avatar(props: AvatarProps): JSX.Element; export function AvatarImage(props: React.ImgHTMLAttributes): JSX.Element; export function AvatarFallback(props: React.HTMLAttributes): JSX.Element;