import { type MessengerAdapter, type CommandHandler } from "./base.js"; export declare class TelegramAdapter implements MessengerAdapter { readonly platform = "telegram"; readonly channelNames: string[]; private bot; startBot(onCommand: CommandHandler): Promise; startNotifier(): Promise; sendToChannel(productConfig: Record, _channelName: string, text: string, title?: string): Promise; setupChannels(): Promise; }