import * as z from "zod/v3"; export type GeocodingUKRetrieveGlobals = { source?: string | undefined; }; export type GeocodingUKRetrieveRequest = { /** * The key to use to authenticate to the service. */ key?: string | undefined; /** * The location ID to retrieve the coordinates for. */ id: string; }; /** @internal */ export type GeocodingUKRetrieveRequest$Outbound = { Key?: string | undefined; Id: string; }; /** @internal */ export declare const GeocodingUKRetrieveRequest$outboundSchema: z.ZodType; export declare function geocodingUKRetrieveRequestToJSON(geocodingUKRetrieveRequest: GeocodingUKRetrieveRequest): string; //# sourceMappingURL=geocodingukretrieve.d.ts.map