import { z } from "zod/v4"; /** * Structured validation rules for form field components. * Example: { required: true, email: true, minLength: 5, max: 100 } * Available keys: required, email, url, numeric, min (number), max (number), minLength (number), maxLength (number), pattern (regex string) */ export declare const rulesSchema: z.ZodOptional; email: z.ZodOptional; url: z.ZodOptional; numeric: z.ZodOptional; min: z.ZodOptional; max: z.ZodOptional; minLength: z.ZodOptional; maxLength: z.ZodOptional; pattern: z.ZodOptional; }, z.core.$strip>>; export type RulesSchema = z.infer; //# sourceMappingURL=rules.d.ts.map