import * as z from "zod/v3"; export type GeocodingInternationalReverseGeocodeGlobals = { source?: string | undefined; }; export type GeocodingInternationalReverseGeocodeRequest = { /** * The key to use to authenticate to the service. */ key?: string | undefined; /** * The WGS84 latitude coordinate for the search. */ latitude: number; /** * The WGS84 longitude coordinate for the search. */ longitude: number; }; /** @internal */ export type GeocodingInternationalReverseGeocodeRequest$Outbound = { Key?: string | undefined; Latitude: number; Longitude: number; }; /** @internal */ export declare const GeocodingInternationalReverseGeocodeRequest$outboundSchema: z.ZodType; export declare function geocodingInternationalReverseGeocodeRequestToJSON(geocodingInternationalReverseGeocodeRequest: GeocodingInternationalReverseGeocodeRequest): string; //# sourceMappingURL=geocodinginternationalreversegeocode.d.ts.map