import { z } from 'zod'; import { FormConfig, FieldProps } from '../types'; /** * Generates a complete Zod schema based on form configuration */ export declare const generateZodSchema: (config: FormConfig) => z.ZodObject<{ [x: string]: z.ZodType>; }, z.core.$strip>; /** * Gets default value for a field based on its type and configuration */ export declare const getFieldDefaultValue: (fieldConfig: FieldProps) => string | number | false | never[] | Date; //# sourceMappingURL=schemaGenerator.d.ts.map