import type { AcurisClient } from "../client.js"; import type { AddressInput, GeocodeOptions, GeocodingResult } from "../types.js"; /** * Forward geocode an address to lat/lng. The live API exposes this as * `GET /geocode` with query params, which is what we wire under the hood. * * Accepts a structured input or a single-line string (the latter goes through * `/validate` internally, since `/geocode` is fielded-only). */ export declare function geocodeAddress(client: AcurisClient, input: AddressInput, options?: GeocodeOptions): Promise; //# sourceMappingURL=geocode.d.ts.map