import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as models from "../models/index.js"; import * as operations from "../models/operations/index.js"; export declare class GeocodingUK extends ClientSDK { /** * Geocoding_UK_Find * * @remarks * Finds locations matching the given input. Supports UK only. */ find(request: operations.GeocodingUKFindRequest, options?: RequestOptions): Promise; /** * Geocoding_UK_Geocode * * @remarks * Returns the OS easting + northing along with WGS84 latitude and longitude for the given postcode. Supports UK only. */ geocode(request: operations.GeocodingUKGeocodeRequest, options?: RequestOptions): Promise; /** * Geocoding_UK_Retrieve * * @remarks * Returns the OS easting + northing along with WGS84 latitude and longitude for the given location. Supports UK only. */ retrieve(request: operations.GeocodingUKRetrieveRequest, options?: RequestOptions): Promise; /** * Geocoding_UK_RetrieveNearestPlaces * * @remarks * Calculates the nearest places of interest of a given category to a given location. */ retrieveNearestPlaces(request: operations.GeocodingUKRetrieveNearestPlacesRequest, options?: RequestOptions): Promise; /** * Geocoding_UK_ReverseGeocode * * @remarks * Returns the nearest address or location to the given coordinates. Currently only supports the UK. */ reverseGeocode(request: operations.GeocodingUKReverseGeocodeRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=geocodinguk.d.ts.map