/** * App-specific render components — agent-renderable Block Kit cards authored * with the `@copilotkit/channels-ui` JSX vocabulary. * * Each component is a plain `ComponentFn` returning a `` tree; its * exported zod prop schema doubles as the render-tool input schema. Render a * component with `renderSlackMessage(renderToIR())`. */ export { IssueCard, issueCardSchema } from "./issue-card.js"; export type { IssueCardProps } from "./issue-card.js"; export { IssueList, issueListSchema } from "./issue-list.js"; export type { IssueListProps } from "./issue-list.js"; export { PageList, pageListSchema } from "./page-list.js"; export type { PageListProps } from "./page-list.js";