/** * FeeStructure Validation Schema * * Zod validation schema for fee-structure form with i18n keys */ import { z } from "zod"; import { FEE_TYPE } from "../../type"; export declare const VALIDATION_KEYS: { readonly name: "validationFeeStructureNameRequired"; readonly feeType: "validationFeeStructureFeeTypeRequired"; readonly amountPositive: "validationFeeStructureAmountPositive"; readonly idForUpdate: "validationFeeStructureIdForUpdateRequired"; }; export declare const feeStructureFormValidation: z.ZodObject<{ name: z.ZodString; feeType: z.ZodEnum; amount: z.ZodNumber; classId: z.ZodNullable>; frequency: z.ZodNullable>; description: z.ZodNullable>; enabled: z.ZodOptional; }, z.core.$strip>;