import { default as React } from 'react';
interface BaseAvatarProps {
    imageUIDOrUrl?: string | null;
    name?: string;
    className?: string | undefined;
}
interface AvatarWithStatusProps extends BaseAvatarProps {
    isOnline?: boolean;
}
declare const Avatar: React.FC<BaseAvatarProps> & {
    WithStatus: React.NamedExoticComponent<AvatarWithStatusProps>;
};
export default Avatar;
