import * as z from "zod/v3"; export type GovernmentDataPostzonRetrieveByPostcodeGlobals = { source?: string | undefined; }; export type GovernmentDataPostzonRetrieveByPostcodeRequest = { /** * The key to use to authenticate to the service. */ key?: string | undefined; /** * The Postcode to use to search with. */ postcode: string; /** * The username associated with the Royal Mail license (not required for click licenses). */ userName?: string | undefined; }; /** @internal */ export type GovernmentDataPostzonRetrieveByPostcodeRequest$Outbound = { Key?: string | undefined; Postcode: string; UserName?: string | undefined; }; /** @internal */ export declare const GovernmentDataPostzonRetrieveByPostcodeRequest$outboundSchema: z.ZodType; export declare function governmentDataPostzonRetrieveByPostcodeRequestToJSON(governmentDataPostzonRetrieveByPostcodeRequest: GovernmentDataPostzonRetrieveByPostcodeRequest): string; //# sourceMappingURL=governmentdatapostzonretrievebypostcode.d.ts.map