import type { SuggestionHit } from "@acuris-geo/av-sdk"; import type { AcurisAddressInputProps } from "./types.js"; /** * Controlled input with Acuris-powered typeahead, emitting commercetools- * shaped suggestion hits via `onSelect`. * * The component never touches Acuris directly. It calls `endpoints.suggest` * on the merchant's backend, which proxies to api.acuris-geo.com with the * API key attached server-side. */ export declare const AcurisAddressInput: import("react").ForwardRefExoticComponent>; /** * Single-line display for a suggestion. Prefer Acuris's `formatted_address` * flattened to commas; fall back to a synthesised form. */ export declare function hitToDisplay(hit: SuggestionHit): string; //# sourceMappingURL=AcurisAddressInput.d.ts.map