import { SxProps } from '@mui/material'; import { default as React } from 'react'; export type UserAvatarListUser = { id: string; alias?: string | null; hasThumbnail?: boolean; }; type Props = { users: UserAvatarListUser[] | null; size?: number; label?: string; sx?: SxProps; sxItem?: SxProps; getProfilePictureUrl: (userId: string) => string; maxAvatarCount?: number; }; declare const UserAvatarList: React.FC; export default UserAvatarList;