/** * Telegram Adapter — RFC-0022 * * Sends notifications via Telegram Bot API. */ import type { NotificationPayload, NotificationResult, TelegramConfig } from "../types.js"; import { BaseChannelAdapter } from "../base-adapter.js"; export declare class TelegramAdapter extends BaseChannelAdapter { readonly id = "telegram"; readonly type = "telegram"; constructor(config: TelegramConfig); initialize(): Promise; send(payload: NotificationPayload): Promise; private formatMessage; private getEmoji; } //# sourceMappingURL=telegram-adapter.d.ts.map