import { HttpClient } from '@angular/common/http'; import { BaseAuthService } from './base-auth.service'; import { PublicService } from './public.service'; import { AlarmConf, AlarmData, AlarmNotification } from './models/AlarmData'; import * as i0 from "@angular/core"; export declare class AlarmService extends BaseAuthService { publicService: PublicService; private httpClient; protected env: any; constructor(publicService: PublicService, httpClient: HttpClient, env: any); protected getBasePath(): string; getAlarms(deviceId: any, filter?: any): import("rxjs").Observable; getLastAlarms(deviceId: string, alarmConfId: string): import("rxjs").Observable; getActiveAlarms(filter?: any): import("rxjs").Observable; getMachineAlarms(machineId: string, filter?: any): import("rxjs").Observable; stopAllAlarms(): import("rxjs").Observable; getUserNotifications(deviceId: any, alarmConfId: any): import("rxjs").Observable; updateUserNotifications(deviceId: any, alarmConfId: any, body: any): import("rxjs").Observable; getAllAlarmsConf(deviceId: any): import("rxjs").Observable; getAlarmConf(deviceId: any, alarmConfId: any): import("rxjs").Observable; putAlarmConf(deviceId: any, alarmConfId: any, body: any): import("rxjs").Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }