import type { Members, Officials } from './accounts.types'; export type IdnAccount = { username: string; uuid: string; name: string; defaultStreamUrl?: string; }; export type ActiveOfficialsIdn = Extract; export type ActiveMembersIdn = Members; export declare const officialsIdn: Record>; export declare const membersIdn: Record>;