import { z } from "zod"; //#region src/vocabulary/text.d.ts export declare const textVocabulary: { Header: { description: string; properties: z.ZodObject<{ text: z.ZodString; size: z.ZodOptional>; }, z.core.$strip>; render: ({ text, size, children }: any) => import("react").JSX.Element; }; Text: { description: string; properties: z.ZodObject<{ value: z.ZodString; size: z.ZodOptional>; weight: z.ZodOptional>; color: z.ZodOptional>; }, z.core.$strip>; streamProperties: true; render: ({ value, size, weight, color, children }: any) => import("react").JSX.Element; }; Caption: { description: string; properties: z.ZodObject<{ value: z.ZodString; }, z.core.$strip>; streamProperties: true; render: ({ value, children }: any) => import("react").JSX.Element; }; }; //#endregion //# sourceMappingURL=text.d.ts.map