import type { ChannelNode } from "@copilotkit/channels-ui"; import type { TelegramPayload } from "../types.js"; /** * Render a cross-platform component IR tree into a Telegram Bot API payload. * * The renderer is total: unknown intrinsic types are skipped rather than * throwing. Telegram limits are enforced via {@link truncateText}, * {@link clampArray}, and {@link byteLen}. */ export declare function renderTelegram(ir: ChannelNode[]): TelegramPayload; //# sourceMappingURL=telegram.d.ts.map