import { z } from 'zod'; export declare const userProfileFormErrors: { country: string; dob: string; firstName: string; firstNameMin: string; gender: string; lastName: string; lastNameMin: string; phone: string; phoneFormat: string; timeZone: string; userName: string; userNameMax: string; userNameMin: string; userAgeLimit: string; }; export declare const userProfileSchemaValidation: z.ZodObject<{ avatar: z.ZodOptional; country: z.ZodString; dob: z.ZodString; firstName: z.ZodString; gender: z.ZodEnum<{ MALE: "MALE"; FEMALE: "FEMALE"; }>; lastName: z.ZodString; newsletter: z.ZodBoolean; phone: z.ZodString; referralCode: z.ZodNullable>; timeZone: z.ZodString; username: z.ZodString; }, z.core.$strip>;