/// import { AvatarBtnProps, AvatarSize } from '../avatar/types'; export interface AvatarListProps { AddUserBtn?: React.ReactNode; avatarList: AvatarBtnProps[]; onAvatarCountClick?: () => void; onAddUserClick?: () => void; size?: AvatarSize; maxAvatarCount?: number; whiteBorder?: number; firstAvatar?: React.ReactNode; firstAvatarId?: string; } export interface AddUserButtonProps { className?: string; onClick?: () => void; size?: AvatarSize; }