import { ModuleExport } from './moduleExport.generated.js'; import { z } from 'zod'; export type FormFieldItem = { id: string; accessorPath: Array; input: ModuleExport; label: string; placeholder?: string | undefined; }; export declare const formFieldItem: z.ZodObject<{ id: z.ZodString; accessorPath: z.ZodArray; input: z.ZodObject<{ exportPath: z.ZodString; exportName: z.ZodString; }, z.core.$strip>; label: z.ZodString; placeholder: z.ZodOptional; }, z.core.$strip>; //# sourceMappingURL=formFieldItem.generated.d.ts.map