import type { ChannelOutboundAdapter } from "agdi/plugin-sdk/channel-send-result"; import type { ReplyPayload } from "agdi/plugin-sdk/reply-runtime"; import { sendMessageTelegram } from "./send.js"; export declare const TELEGRAM_TEXT_CHUNK_LIMIT = 4000; type TelegramSendFn = typeof sendMessageTelegram; type TelegramSendOpts = Parameters[2]; export declare function sendTelegramPayloadMessages(params: { send: TelegramSendFn; to: string; payload: ReplyPayload; baseOpts: Omit, "buttons" | "mediaUrl" | "quoteText">; }): Promise>>; export declare const telegramOutbound: ChannelOutboundAdapter; export {};