import type { Members, Officials } from './accounts.types';
type TwitterAccount = {
    id: string;
    username: string;
};
type ActiveOfficials = Exclude<Officials, 'jkt48-merch' | 'jkt48-trainee'>;
type ActiveMembers = Exclude<Members, 'auwia' | 'ekin' | 'giaa' | 'intan' | 'jemima' | 'maira' | 'mikaela' | 'rilly' | 'virgi'>;
export declare const officialsTwitter: Record<ActiveOfficials, TwitterAccount>;
export declare const membersTwitter: Record<ActiveMembers, TwitterAccount>;
export {};
