import { WeatherHistoryResponseModel, WeatherStatisticsResponseModel } from '../models/history.model'; import { LocationsService } from '../services/locations.service'; import { WeatherHistoryService } from '../services/weather-history.service'; export declare class HistoryController { private readonly historyService; private readonly locationsService; private readonly logger; constructor(historyService: WeatherHistoryService, locationsService: LocationsService); getHistory(locationId: string, startTime?: string, endTime?: string, limit?: string): Promise; getStatistics(locationId: string, startTime?: string, endTime?: string): Promise; }