import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type GeocodingInternationalGeocodeResponseItem = { /** * The name of the location found. */ name?: string | undefined; /** * The WGS84 latitude of the found location. For example: '34.1075'. */ latitude?: number | undefined; /** * The WGS84 longitude of the found location. For example: '-118.4165'. */ longitude?: number | undefined; }; export type GeocodingInternationalGeocodeResponse = { items?: Array | undefined; }; /** @internal */ export declare const GeocodingInternationalGeocodeResponseItem$inboundSchema: z.ZodType; export declare function geocodingInternationalGeocodeResponseItemFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GeocodingInternationalGeocodeResponse$inboundSchema: z.ZodType; export declare function geocodingInternationalGeocodeResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=geocodinginternationalgeocoderesponse.d.ts.map