import type { AcurisClient } from "../client.js"; import type { SuggestOptions, SuggestionHit } from "../types.js"; /** * Autocomplete prefix → up to N suggestion hits. Used by * `` to power its typeahead. * * Requires an Acuris API key (the `/suggest` endpoint is paid-only for * arbitrary callers; widget-token mode is restricted to the marketing site). */ export declare function suggestAddress(client: AcurisClient, query: string, options?: SuggestOptions): Promise; //# sourceMappingURL=suggest.d.ts.map