/** * Enrollment Validation Schema * * Zod validation schemas for enrollment form data. */ import { z } from "zod"; export declare const VALIDATION_KEYS: { readonly classIdRequired: "validationEnrollmentClassIdRequired"; readonly studentProfileIdRequired: "validationEnrollmentStudentProfileIdRequired"; readonly sectionIdRequired: "validationEnrollmentSectionIdRequired"; readonly enrollmentDateRequired: "validationEnrollmentEnrollmentDateRequired"; }; export declare const enrollmentFormValidation: z.ZodObject<{ classId: z.ZodString; studentProfileId: z.ZodString; sectionId: z.ZodString; enrollmentDate: z.ZodString; enabled: z.ZodOptional; }, z.core.$strip>;