import { I18nService } from 'nestjs-i18n'; import { AxiosService } from '../../services/axios/axios.service'; import { LoggerService } from '../../services/logger/logger.service'; export declare class MapZoneService { private readonly loggerService; private readonly axiosService; private readonly i18n; private mapZoneService; constructor(loggerService: LoggerService, axiosService: AxiosService, i18n: I18nService); getMapZones(lang: any): Promise<{ name: string; title: any; measure: any; referenceByInterval: boolean; series: any[]; references: any[]; filters: { id: string; label: any; values: any[]; position: number; }[]; exclusive: boolean; displayOnStart: boolean; }>; }