import { I18nService } from 'nestjs-i18n'; import { AxiosService } from '../../services/axios/axios.service'; import { LoggerService } from '../../services/logger/logger.service'; import { ConversionUtil } from './conversionUtil.service'; export declare class MapCurrentStateService { private readonly loggerService; private readonly axiosService; private readonly conversionUtil; private readonly i18n; private mapCurrentStateAxiosInstance; private activityAxiosInstance; private sectorAxiosInstance; private typeAxiosInstance; constructor(loggerService: LoggerService, axiosService: AxiosService, conversionUtil: ConversionUtil, i18n: I18nService); private getSectorMap; private getActivityMap; private getTypeMap; getUpdatedData(things: any[], lang: string, timeOffset: number): Promise; getCurrentVersion(thingIds: string[]): Promise; processMapCurrentStateData(data: any[], lang: string, timeOffset: number, sectorMap: any, activityMap: any, typeMap: any): { thingMarkers: any[]; markers: any[]; }; private getTimestampColor; }