import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type GeocodingUKReverseGeocodeResponseItem = { /** * The postcode that is nearest to the given location. */ postcode?: string | undefined; /** * The distance in metres from the CentrePoint to this record. */ distance?: number | 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; }; export type GeocodingUKReverseGeocodeResponse = { items?: Array | undefined; }; /** @internal */ export declare const GeocodingUKReverseGeocodeResponseItem$inboundSchema: z.ZodType; export declare function geocodingUKReverseGeocodeResponseItemFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GeocodingUKReverseGeocodeResponse$inboundSchema: z.ZodType; export declare function geocodingUKReverseGeocodeResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=geocodingukreversegeocoderesponse.d.ts.map