import { z } from "zod"; //#region src/vocabulary/data.d.ts export declare const dataVocabulary: { Table: { description: string; properties: z.ZodObject<{ columns: z.ZodOptional>>; rows: z.ZodOptional>>>; }, z.core.$strip>; render: ({ columns, rows, children }: any) => import("react").JSX.Element; }; Markdown: { description: string; properties: z.ZodObject<{ value: z.ZodString; }, z.core.$strip>; streamProperties: true; render: ({ value, children }: any) => import("react").JSX.Element; }; Chart: { description: string; properties: z.ZodObject<{ variant: z.ZodEnum<{ bar: "bar"; line: "line"; sparkline: "sparkline"; area: "area"; }>; data: z.ZodOptional; value: z.ZodNumber; }, z.core.$strip>>>; series: z.ZodOptional; data: z.ZodArray; value: z.ZodNumber; }, z.core.$strip>>; }, z.core.$strip>>>; stacked: z.ZodOptional; showAxis: z.ZodOptional; showLegend: z.ZodOptional; color: z.ZodOptional; }, z.core.$strip>; render: ({ variant, data, series, stacked, showAxis, showLegend, color }: any) => import("react").JSX.Element; }; }; //#endregion //# sourceMappingURL=data.d.ts.map