import type { ChannelNode } from "@copilotkit/channels-ui"; /** * Render the bot-ui IR tree to a Teams message string. * * Teams message activities render Markdown, so the structural vocabulary maps * cleanly onto it: a `
` becomes a bold line, `
`/`` * pass their text through, `` becomes a rule, and so on. This is the * thin, text-first renderer that covers plain replies and the common card * shapes; richer interactive surfaces (buttons, inputs) will render to * Adaptive Cards in a follow-up (see the package README). */ export declare function renderTeamsMarkdown(ir: ChannelNode[]): string; //# sourceMappingURL=markdown.d.ts.map