import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { WeatherCloudConfig } from '../models/wc-config.model'; import { RouteModel } from '../models/route.model'; export declare class LocationSearchService { protected http: HttpClient; WeatherCloudConfig: WeatherCloudConfig; constructor(http: HttpClient); Search(term: string, lbsKey: string): Observable; }