import { type HttpClientType } from '../httpExternal/omyClient'; import type { MapboxSearchOptions } from './types'; export declare class GeoCoding { private provider; private http; constructor(provider: { apiUrl: string; apiKey: string; httpClientType: HttpClientType; }); private setHttp; /** Get place(s) based on a string query */ forwardSearch(q: string, options?: Partial): Promise; }