/** * Step 01 — Profile * * Fields: firstName, middleName, lastName, displayName, gender, dateOfBirth, * whatsappNumber, primaryLanguage, secondaryLanguages, * familyReligion, personalReligion, reservationStatus, minorityStatus * * @module udp-schema/step-01 */ import { z } from 'zod'; export declare const step01ProfileSchema: z.ZodObject<{ firstName: z.ZodOptional; middleName: z.ZodPreprocess>; lastName: z.ZodOptional; displayName: z.ZodPreprocess>; gender: z.ZodOptional>; dateOfBirth: z.ZodPreprocess>>; whatsappNumber: z.ZodOptional; primaryLanguage: z.ZodOptional; secondaryLanguages: z.ZodOptional>; familyReligion: z.ZodOptional>; personalReligion: z.ZodOptional>; sameAsFamily: z.ZodOptional; reservationStatus: z.ZodOptional>; minorityStatus: z.ZodOptional>; }, z.core.$strip>; export type Step01ProfileInput = z.infer; //# sourceMappingURL=step-01.schema.d.ts.map