import React from 'react';
import { AvatarSize } from './Avatar';
import { UserProfile } from '../utils/synapseTypes/';
export declare type UserCardSmallProps = {
    userProfile: UserProfile;
    showCardOnHover?: boolean;
    disableLink?: boolean;
    link?: string;
    showAccountLevelIcon?: boolean;
    openLinkInNewTab?: boolean;
    withAvatar?: boolean;
    avatarSize?: AvatarSize;
    imageURL?: string;
    className?: string;
    showFullName?: boolean;
};
export declare const UserCardSmall: React.FunctionComponent<UserCardSmallProps>;
