import { UserProfile } from '@sage-bionetworks/synapse-types';
export type AvatarSize = 'SMALL' | 'MEDIUM' | 'LARGE';
export type AvatarProps = {
    userProfile: UserProfile;
    avatarSize?: AvatarSize;
    imageURL?: string;
    showCardOnHover?: boolean;
    isLoadingAvatar?: boolean;
    className?: string;
};
export declare function Avatar({ userProfile, avatarSize, imageURL, showCardOnHover, isLoadingAvatar, className, }: AvatarProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Avatar.d.ts.map