import * as z from "zod/v3"; export type GeocodingUKReverseGeocodeGlobals = { source?: string | undefined; }; export type GeocodingUKReverseGeocodeRequest = { /** * 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; }; /** @internal */ export type GeocodingUKReverseGeocodeRequest$Outbound = { Key?: string | undefined; CentrePoint: string; }; /** @internal */ export declare const GeocodingUKReverseGeocodeRequest$outboundSchema: z.ZodType; export declare function geocodingUKReverseGeocodeRequestToJSON(geocodingUKReverseGeocodeRequest: GeocodingUKReverseGeocodeRequest): string; //# sourceMappingURL=geocodingukreversegeocode.d.ts.map