import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type GeocodingUKFindResponseItem = { /** * The ID of this location, use with the Retrieve service to get the coordinates. */ id?: string | undefined; /** * The name of the location found. */ location?: string | undefined; /** * The type of location listed. */ type?: string | undefined; }; export type GeocodingUKFindResponse = { items?: Array | undefined; }; /** @internal */ export declare const GeocodingUKFindResponseItem$inboundSchema: z.ZodType; export declare function geocodingUKFindResponseItemFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GeocodingUKFindResponse$inboundSchema: z.ZodType; export declare function geocodingUKFindResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=geocodingukfindresponse.d.ts.map