import type { WhatsAppBotAccountEntry, WhatsAppBotConfig, WhatsAppBotCredentials } from './types.js'; export declare class WhatsAppBotCredentialManager { private configDir; private credentialsPath; constructor(configDir?: string); load(): Promise; save(config: WhatsAppBotConfig): Promise; getCredentials(accountId?: string): Promise; setCredentials(entry: WhatsAppBotAccountEntry): Promise; removeAccount(accountId: string): Promise; setCurrent(accountId: string): Promise; listAll(): Promise>; clearCredentials(): Promise; } //# sourceMappingURL=credential-manager.d.ts.map