CurrentUser: {
    database: {
        badges: string | null | undefined;
        birthday: {
            date: string | null | undefined;
            whereToCongratulate: string[] | null | undefined;
        } | undefined;
        bitfield: string | null | undefined;
        blacklisted: boolean;
        hasGuildSubscription: boolean;
        linkedAccounts: {
            kick: string | null | undefined;
            rumble: string | null | undefined;
            twitch: string | null | undefined;
        };
        linkedRoles: boolean;
        locale: string;
        premium: {
            enabled?: boolean | null;
            tier?: string | null;
        } | null | undefined;
        votes: number | null | undefined;
    };
    discord: {
        accentColor: string;
        avatar: string | null;
        banner?: string | null;
        discriminator: string;
        email?: string | null;
        globalName: string | null;
        id: string;
        isBotDev?: boolean;
        useNewUsername?: boolean;
        username: string;
    };
}