import { z } from 'zod'; import { VisualComponentDefinition } from '../core'; declare const Markdown: "Markdown"; export type MarkdownComponentType = typeof Markdown; export interface MarkdownComponentDefinition extends VisualComponentDefinition { /** * Raw Markdown text to render. Can include **bold**, *italic*, and [links](https://example.com). */ content: string; } export declare const MarkdownSchema: z.ZodObject<{ type: z.ZodLiteral<"Markdown">; content: z.ZodString; }, "strip", z.ZodTypeAny, { type: "Markdown"; content: string; }, { type: "Markdown"; content: string; }>; export {}; //# sourceMappingURL=markdown.d.ts.map