import React from 'react'; import { IGlyph } from '../../icon'; /** * The Button component. * * @TODO We should actually just have a type, where it's image, text, emoji, or icon type! * There should also be a display name property. `name` should not represent the tooltip & display * text. */ export interface IAvatarItemProps { className?: string; /** Option user name */ name?: string; /** Optional color */ color?: any; /** Optional emoji. It basically renders a string like name. */ emoji?: string; /** Optional passed styles */ style?: object; /** Optional icon */ icon?: string | IGlyph; /** Optional icon color */ iconFill?: string; /** Optional user avatar image */ image?: string; /** Size variation, default is medium */ itemSize?: 'small' | 'medium' | 'large' | number; /** The user is deleted or left from workspace. */ isRemoved?: boolean; displayTooltip?: boolean; } export declare const AvatarItem: React.FC;