import React from 'react';
import { BadgeProps } from '@mui/material';
export interface UserAvatarProps extends BadgeProps {
    className?: string;
    children?: React.ReactNode;
    hide: boolean;
    smaller?: boolean;
}
export default function UserAvatar(inProps: UserAvatarProps): JSX.Element;
