import { TelegramConfig } from '../../types/config'; import { AlertPayload, AlertSendResult, DailyReportPayload } from '../../types/alert'; export declare class TelegramChannel { private cfg; private readonly base; constructor(cfg: TelegramConfig); send(payload: AlertPayload): Promise; sendDailyReport(payload: DailyReportPayload): Promise; /** Validate token + chat_id by sending a test message */ test(): Promise; } //# sourceMappingURL=telegram.d.ts.map