import { type UIAnalyticsEvent } from '@atlaskit/analytics-next'; export type AvatarSizeMap = Record; export type AppearanceType = 'circle' | 'square' | 'hexagon'; export type SizeType = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge'; export type IndicatorSizeType = 'small' | 'medium' | 'large' | 'xlarge'; export type AvatarClickEventHandler = (event: React.MouseEvent, analyticsEvent?: UIAnalyticsEvent) => void; export type Status = 'approved' | 'declined' | 'locked'; export type Presence = 'online' | 'busy' | 'focus' | 'offline';