import { ElevenLabsAccount } from '../types/account.js';
export declare class CredentialManager {
    private accounts;
    saveAccount(account: ElevenLabsAccount): Promise<void>;
    getAccount(id: string): Promise<ElevenLabsAccount | null>;
    getAllAccounts(): Promise<ElevenLabsAccount[]>;
    removeAccount(id: string): Promise<void>;
    updateAccount(account: ElevenLabsAccount): Promise<void>;
}
//# sourceMappingURL=credential-manager.d.ts.map