import * as z from "zod/v3"; export type GovernmentDataPostzonRetrieveByCoordinatesGlobals = { source?: string | undefined; }; export type GovernmentDataPostzonRetrieveByCoordinatesRequest = { /** * The key to use to authenticate to the service. */ key?: string | undefined; /** * A postcode or coordinates (latitude, longitude or easting, nothing) of the centre of the search. */ centrePoint: string; /** * The username associated with the Royal Mail license (not required for click licenses). */ userName?: string | undefined; }; /** @internal */ export type GovernmentDataPostzonRetrieveByCoordinatesRequest$Outbound = { Key?: string | undefined; CentrePoint: string; UserName?: string | undefined; }; /** @internal */ export declare const GovernmentDataPostzonRetrieveByCoordinatesRequest$outboundSchema: z.ZodType; export declare function governmentDataPostzonRetrieveByCoordinatesRequestToJSON(governmentDataPostzonRetrieveByCoordinatesRequest: GovernmentDataPostzonRetrieveByCoordinatesRequest): string; //# sourceMappingURL=governmentdatapostzonretrievebycoordinates.d.ts.map