import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; export declare class AddressLookUpServiceConfig { apiKey: string; } export declare class InputAddressLookUpService { private http; apiKey: string; country: string; constructor(http: HttpClient, config: AddressLookUpServiceConfig); getAddresses(address: Observable, country?: string): Observable; reverseAddressLookUp(latLng: { latitude: number; longitude: number; }): Observable; }