/** * Step 11 — Residence & Address * * Simplified: 3 fields per address (state, district, village/colony). * Fields: currentAddress, permanentAddress, homeNativePlace, ancestralPlace * * @module udp-schema/step-11 */ import { z } from 'zod'; export declare const simplifiedAddressSchema: z.ZodObject<{ state: z.ZodOptional; name: z.ZodString; type: z.ZodOptional; }, z.core.$strip>]>>>; district: z.ZodOptional; name: z.ZodString; type: z.ZodOptional; }, z.core.$strip>]>>>; village: z.ZodOptional; name: z.ZodString; type: z.ZodOptional; }, z.core.$strip>]>>>; }, z.core.$strip>; export declare const step11ResidenceSchema: z.ZodObject<{ currentAddress: z.ZodOptional; name: z.ZodString; type: z.ZodOptional; }, z.core.$strip>]>>>; district: z.ZodOptional; name: z.ZodString; type: z.ZodOptional; }, z.core.$strip>]>>>; village: z.ZodOptional; name: z.ZodString; type: z.ZodOptional; }, z.core.$strip>]>>>; }, z.core.$strip>>; permanentAddress: z.ZodOptional; name: z.ZodString; type: z.ZodOptional; }, z.core.$strip>]>>>; district: z.ZodOptional; name: z.ZodString; type: z.ZodOptional; }, z.core.$strip>]>>>; village: z.ZodOptional; name: z.ZodString; type: z.ZodOptional; }, z.core.$strip>]>>>; sameAsCurrent: z.ZodOptional; }, z.core.$strip>>; homeNativePlace: z.ZodOptional; name: z.ZodString; type: z.ZodOptional; }, z.core.$strip>]>>>; district: z.ZodOptional; name: z.ZodString; type: z.ZodOptional; }, z.core.$strip>]>>>; village: z.ZodOptional; name: z.ZodString; type: z.ZodOptional; }, z.core.$strip>]>>>; }, z.core.$strip>>; ancestralPlace: z.ZodOptional; name: z.ZodString; type: z.ZodOptional; }, z.core.$strip>]>>>; district: z.ZodOptional; name: z.ZodString; type: z.ZodOptional; }, z.core.$strip>]>>>; village: z.ZodOptional; name: z.ZodString; type: z.ZodOptional; }, z.core.$strip>]>>>; }, z.core.$strip>>; }, z.core.$strip>; export type SimplifiedAddressInput = z.infer; export type Step11ResidenceInput = z.infer; //# sourceMappingURL=step-11.schema.d.ts.map