import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type GeocodingUKRetrieveResponseItem = { /** * The name of the location found. */ location?: string | undefined; /** * The easting coordinate of the location. Represents a distance in meters east from the most south westerly position of the GB mapping grid. */ easting?: number | undefined; /** * The northing coordinate of the location. Represents a distance in meters north from the most south westerly position of the GB mapping grid. */ northing?: number | undefined; /** * The WGS84 latitude coordinate of the location. */ latitude?: number | undefined; /** * The WGS84 longitude coordinate of the location. */ longitude?: number | undefined; }; export type GeocodingUKRetrieveResponse = { items?: Array | undefined; }; /** @internal */ export declare const GeocodingUKRetrieveResponseItem$inboundSchema: z.ZodType; export declare function geocodingUKRetrieveResponseItemFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GeocodingUKRetrieveResponse$inboundSchema: z.ZodType; export declare function geocodingUKRetrieveResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=geocodingukretrieveresponse.d.ts.map