import { z } from "zod"; //#region src/vocabulary/layout.d.ts export declare const layoutVocabulary: { Card: { description: string; properties: z.ZodObject<{ title: z.ZodOptional; padding: z.ZodOptional; background: z.ZodOptional; asForm: z.ZodOptional; confirm: z.ZodOptional>; }, z.core.$strip>>; cancel: z.ZodOptional>; }, z.core.$strip>>; }, z.core.$strip>; render: ({ title, padding, background, asForm, confirm, cancel, $dispatch, children }: any) => import("react").JSX.Element; }; Col: { description: string; properties: z.ZodObject<{ gap: z.ZodOptional; align: z.ZodOptional>; }, z.core.$strip>; render: ({ gap, align, children }: any) => import("react").JSX.Element; }; Row: { description: string; properties: z.ZodObject<{ gap: z.ZodOptional; align: z.ZodOptional>; justify: z.ZodOptional>; }, z.core.$strip>; render: ({ gap, align, justify, children }: any) => import("react").JSX.Element; }; Spacer: { description: string; properties: z.ZodObject<{}, z.core.$strip>; render: () => import("react").JSX.Element; }; Badge: { description: string; properties: z.ZodObject<{ value: z.ZodString; variant: z.ZodOptional; }, z.core.$strip>; render: ({ value, variant, children }: any) => import("react").JSX.Element; }; Box: { description: string; properties: z.ZodObject<{ width: z.ZodOptional>; height: z.ZodOptional>; radius: z.ZodOptional, z.ZodNumber]>>; background: z.ZodOptional; }, z.core.$strip>; render: ({ width, height, radius, background, children }: any) => import("react").JSX.Element; }; }; //#endregion //# sourceMappingURL=layout.d.ts.map