import type { AuthHint, AuthIO, PlatformAdapter, UnifiedChannel, UnifiedMessage, Workspace } from './types.js'; export declare class TelegramAdapter implements PlatformAdapter { readonly name = "Telegram"; private client; private credManager; private currentAccount; login(): Promise; getChannels(): Promise; getMessages(channelId: string, limit?: number): Promise; sendMessage(channelId: string, text: string): Promise; getWorkspaces(): Promise; switchWorkspace(accountId: string): Promise; getCurrentWorkspace(): Workspace | null; getAuthHint(): AuthHint; authenticate(io: AuthIO): Promise; private ensureClient; } //# sourceMappingURL=telegram-adapter.d.ts.map