import type { WebexBotConfig, WebexBotCredentials } from './types.js'; export declare class WebexBotCredentialManager { private configDir; private credentialsPath; constructor(configDir?: string); load(): Promise; save(config: WebexBotConfig): Promise; getCredentials(botId?: string): Promise; setCredentials(creds: WebexBotCredentials): Promise; removeBot(botId: string): Promise; setCurrent(botId: string): Promise; listAll(): Promise>; clearCredentials(): Promise; } //# sourceMappingURL=credential-manager.d.ts.map