import { z } from "zod"; import { ATTENDANCE_STATUS } from "../../type"; export declare const VALIDATION_KEYS: { readonly date: "validationRequiredDate"; readonly status: "validationRequiredStatus"; }; export declare const attendanceFormValidation: z.ZodObject<{ date: z.ZodString; enabled: z.ZodOptional; remarks: z.ZodOptional; status: z.ZodEnum; studentProfileId: z.ZodOptional; }, z.core.$strip>;