import { OnInit } from '@angular/core'; import { AngularWeatherWidgetService } from './angular-weather-widget.service'; export declare class AngularWeatherWidgetComponent implements OnInit { ws: AngularWeatherWidgetService; APIKEY: any; height: string; width: string; backgroundColor: string; isBoxShadow: boolean; borderRadius: string; locationFontSize: string; locationFontColor: string; status: boolean; statusFontColor: string; statusFontSize: String; temperature: Boolean; tempratureFontColor: string; tempratureFontSize: string; weatherImages: boolean; weatherImageWidth: string; weatherImageHeight: string; geoLocation: boolean; location: any; isWind: boolean; isHumidity: boolean; windFontColor: string; windFontSize: string; humidityFontColor: string; humidityFontSize: string; isLoading: boolean; weatherDetails: { location: string; weather_descriptions: string; temperature: string; icon: string; wind_speed: string; humidity: string; }; constructor(ws: AngularWeatherWidgetService); ngOnInit(): void; /** *@description Check whether geolocation or manually added location. */ checkLocation(): void; getWeather(isGeoLocation: any): void; }