import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { LocationServicesGeocodingGlobalExternalGeocodingItemResponse } from "./locationservicesgeocodingglobalexternalgeocodingitemresponse.js"; export type LocationServicesGeocodingGlobalExternalGeocodingResult = { /** * The input from the original request. */ input?: string | undefined; /** * An array of geocoding results corresponding to each input from the original request. */ results?: Array | undefined; }; /** @internal */ export declare const LocationServicesGeocodingGlobalExternalGeocodingResult$inboundSchema: z.ZodType; export declare function locationServicesGeocodingGlobalExternalGeocodingResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=locationservicesgeocodingglobalexternalgeocodingresult.d.ts.map