import { GlobalRef } from './windowRef.service'; import { HttpClient } from '@angular/common/http'; import { LocalStorageService } from './storage.service'; export declare class AutoCompleteSearchService { private _http; private platformId; private _global; private _localStorageService; constructor(_http: HttpClient, platformId: Object, _global: GlobalRef, _localStorageService: LocalStorageService); getPredictions(url: string, query: string): Promise; getLatLngDetail(url: string, lat: string, lng: string): Promise; getPlaceDetails(url: string, placeId: string): Promise; getGeoCurrentLocation(): Promise; getGeoLatLngDetail(latlng: any): Promise; getGeoPrediction(params: any): Promise; getGeoPlaceDetail(placeId: string): Promise; getGeoPaceDetailByReferance(referance: string): Promise; addRecentList(localStorageName: string, result: any, itemSavedLength: number): any; getRecentList(localStorageName: string): Promise; private getUniqueResults; private geoPredictionCall; }