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