import type { AcurisClient } from "../client.js"; import type { ReverseGeocodeOptions, ReverseGeocodingResult } from "../types.js"; /** * Reverse geocode lat/lng to the nearest known address within `radius_m`. * * The live API returns either a single match (default) or an array under * `matches` when `limit > 1`. We normalize to `{ hits, query }` in both cases. */ export declare function reverseGeocode(client: AcurisClient, coords: { lat: number; lng: number; }, options: ReverseGeocodeOptions): Promise; //# sourceMappingURL=reverseGeocode.d.ts.map