/** * Step 07 — Employment & Occupation * * Fields: employmentStatus, occupation, workShift, comfortableWithShift, * desiredShift, incomeRange, dreamOccupation * * @module udp-schema/step-07 */ import { z } from 'zod'; export declare const step07EmploymentSchema: z.ZodObject<{ employmentStatus: z.ZodOptional>; occupation: z.ZodOptional>; workShift: z.ZodOptional>; comfortableWithShift: z.ZodOptional>; desiredShift: z.ZodOptional>; incomeRange: z.ZodOptional; dreamOccupation: z.ZodOptional>; }, z.core.$strip>; export type Step07EmploymentInput = z.infer; //# sourceMappingURL=step-07.schema.d.ts.map