export interface ElevenLabsAccount {
    id: string;
    name: string;
    apiKey: string;
    baseUrl?: string;
    isDefault?: boolean;
    createdAt?: string;
}
export interface PersistedAccount extends ElevenLabsAccount {
    addedAt: string;
    lastUsed?: string;
}
export interface AccountState {
    accounts: Map<string, ElevenLabsAccount>;
    activeAccountId: string | null;
    clients: Map<string, any>;
}
export interface AccountSummary {
    id: string;
    name: string;
    isDefault: boolean;
    isActive: boolean;
}
//# sourceMappingURL=account.d.ts.map