/** * Admission Validation Schema * * Zod validation schema for admission form with i18n keys */ import { z } from "zod"; import { GENDER } from "../../type"; export declare const admissionFormValidation: z.ZodObject<{ registrationCode: z.ZodString; firstName: z.ZodString; lastName: z.ZodString; studentIdNumber: z.ZodPipe>; dob: z.ZodString; gender: z.ZodEnum; discountCodeId: z.ZodOptional; hafiz: z.ZodOptional; orphan: z.ZodOptional; fatherFirstName: z.ZodString; fatherLastName: z.ZodString; fatherIdNumber: z.ZodPipe>; fatherMobile: z.ZodPipe>; fatherOccupation: z.ZodOptional; fatherOrganization: z.ZodOptional; motherFirstName: z.ZodString; motherLastName: z.ZodString; motherIdNumber: z.ZodPipe>; motherMobile: z.ZodPipe>; address: z.ZodString; city: z.ZodString; state: z.ZodString; country: z.ZodString; classForAdmission: z.ZodString; previousSchool: z.ZodOptional; siblings: z.ZodOptional; notes: z.ZodOptional; admissionNotes: z.ZodOptional; emergencyContact: z.ZodOptional; }, z.core.$strip>;