import { SxProps } from '@mui/material'; import { FC, ReactNode } from 'react'; export type UserAvatarProfileInfo = { email?: string; role?: string; status?: 'online' | 'offline' | 'away'; joinedAt?: string; extra?: ReactNode; }; type Props = { userId: string; alias: string; hasThumbnail: boolean; cache?: string; sx?: SxProps; getProfilePictureUrl: (userId: string) => string; showProfile?: boolean; profileInfo?: UserAvatarProfileInfo; onClick?: () => void; }; declare const UserAvatar: FC; export default UserAvatar;