// This file is part of Coog. The COPYRIGHT file at the top level of // this repository contains the full copyright notices and license terms. import { SupportedLanguage, ByCountryCodeOptions } from '@geoapify/geocoder-autocomplete'; export interface OSMAddressFieldProps { apiKey: string; language?: SupportedLanguage; regions?: ByCountryCodeOptions; value?: string; eventEmitter: (id: number | string, actionMeta?: any) => void; placeholder?: string; // The number of milliseconds to delay before making a call to OSM Maps API. debounce?: number; }