/// <reference types="react" />
import { UserProfile } from '../utils/synapseTypes/';
declare type UserCardLargeProps = {
    userProfile: UserProfile;
    isCertified?: boolean;
};
/**
 * UserCardLarge wraps around UserCardMedium
 *
 * @export UserCardLarge
 * @param {UserCardLargeProps} { userProfile }
 */
export declare function UserCardLarge({ userProfile, isCertified }: UserCardLargeProps): JSX.Element;
export {};
