import * as z from "zod/v3"; export type GeocodingUKGeocodeGlobals = { source?: string | undefined; }; export type GeocodingUKGeocodeRequest = { /** * The key to use to authenticate to the service. */ key?: string | undefined; /** * The location to geocode. This can be a full or partial postcode, a place name, street comma town, address (comma separated lines) or an ID from PostcodeAnywhere/Find web services. */ location: string; }; /** @internal */ export type GeocodingUKGeocodeRequest$Outbound = { Key?: string | undefined; Location: string; }; /** @internal */ export declare const GeocodingUKGeocodeRequest$outboundSchema: z.ZodType; export declare function geocodingUKGeocodeRequestToJSON(geocodingUKGeocodeRequest: GeocodingUKGeocodeRequest): string; //# sourceMappingURL=geocodingukgeocode.d.ts.map