import { z } from "zod"; //#region src/vocabulary/fact.d.ts export declare const factVocabulary: { Fact: { description: string; properties: z.ZodObject<{ label: z.ZodString; value: z.ZodString; }, z.core.$strip>; render: ({ label, value, children }: any) => import("react").JSX.Element; }; }; //#endregion //# sourceMappingURL=fact.d.ts.map