import { z } from "zod"; //#region src/vocabulary/icon.d.ts export declare const iconVocabulary: { Icon: { description: string; properties: z.ZodObject<{ name: z.ZodEnum<{ search: "search"; check: "check"; sun: "sun"; moon: "moon"; cloud: "cloud"; rain: "rain"; snow: "snow"; wind: "wind"; play: "play"; pause: "pause"; x: "x"; star: "star"; heart: "heart"; "arrow-right": "arrow-right"; "arrow-up-right": "arrow-up-right"; "chevron-right": "chevron-right"; calendar: "calendar"; clock: "clock"; "map-pin": "map-pin"; plane: "plane"; truck: "truck"; "credit-card": "credit-card"; user: "user"; bell: "bell"; }>; size: z.ZodOptional>; }, z.core.$strip>; render: ({ name, size }: any) => import("react").JSX.Element | null; }; }; //#endregion //# sourceMappingURL=icon.d.ts.map