import { VerificationSubmission } from './VerificationSubmission';
import { UserProfile } from './UserProfile';
export declare type UserBundle = {
    userId: string;
    userProfile?: UserProfile;
    ORCID?: string;
    verificationSubmission?: VerificationSubmission;
    isCertified?: boolean;
    isVerified?: boolean;
    isACTMember?: boolean;
};
