import * as z from "zod/v3"; export type GeocodingInternationalPositionToCountryGlobals = { source?: string | undefined; }; export type GeocodingInternationalPositionToCountryRequest = { /** * The key to use to authenticate to the service. */ key?: string | undefined; /** * The latitude of the position to search against. */ latitude: number; /** * The longitude of the position to search against. */ longitude: number; }; /** @internal */ export type GeocodingInternationalPositionToCountryRequest$Outbound = { Key?: string | undefined; Latitude: number; Longitude: number; }; /** @internal */ export declare const GeocodingInternationalPositionToCountryRequest$outboundSchema: z.ZodType; export declare function geocodingInternationalPositionToCountryRequestToJSON(geocodingInternationalPositionToCountryRequest: GeocodingInternationalPositionToCountryRequest): string; //# sourceMappingURL=geocodinginternationalpositiontocountry.d.ts.map