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