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