import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type GeocodingUKGeocodeResponseItem = { /** * 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; /** * The OS grid reference for the location. */ osGrid?: string | undefined; /** * The accuracy of the coordinates returned. */ accuracy?: string | undefined; }; export type GeocodingUKGeocodeResponse = { items?: Array | undefined; }; /** @internal */ export declare const GeocodingUKGeocodeResponseItem$inboundSchema: z.ZodType; export declare function geocodingUKGeocodeResponseItemFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GeocodingUKGeocodeResponse$inboundSchema: z.ZodType; export declare function geocodingUKGeocodeResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=geocodingukgeocoderesponse.d.ts.map