import { z } from "zod"; //#region src/vocabulary/alert.d.ts export declare const alertVocabulary: { Alert: { description: string; properties: z.ZodObject<{ title: z.ZodOptional; description: z.ZodOptional; tone: z.ZodOptional>; }, z.core.$strip>; render: ({ title, description, tone, children }: any) => import("react").JSX.Element; }; Carousel: { description: string; properties: z.ZodObject<{ label: z.ZodOptional; }, z.core.$strip>; render: ({ label, children }: any) => import("react").JSX.Element; }; }; //#endregion //# sourceMappingURL=alert.d.ts.map