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