import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type GeocodingInternationalPositionToCountryResponseItem = { /** * The full name of the country the address is in, as per the ISO 3166-1 standard. */ countryName?: string | undefined; /** * The two character ISO code for the country in the address. For example, the CountryIso2 for the United Kingdom is "GB". */ countryIso2?: string | undefined; /** * The three character ISO code for the country in the address. For example, the CountryIso3 for the United Kingdom is "GBR". */ countryIso3?: string | undefined; /** * The ISO numeric code for the country in the address. For example, the CountryIsoNumber for the United Kingdom is "826". */ countryIsoNumber?: number | undefined; }; export type GeocodingInternationalPositionToCountryResponse = { items?: Array | undefined; }; /** @internal */ export declare const GeocodingInternationalPositionToCountryResponseItem$inboundSchema: z.ZodType; export declare function geocodingInternationalPositionToCountryResponseItemFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GeocodingInternationalPositionToCountryResponse$inboundSchema: z.ZodType; export declare function geocodingInternationalPositionToCountryResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=geocodinginternationalpositiontocountryresponse.d.ts.map