export declare class AlarmData { machineName: string; tablesPrefix: string; deviceName: string; id: string; alarmConfId: string; name: string; description: string; startDate: Date; endDate: Date; creationDate: Date; } export declare class AlarmConf { id: string; name: string; description: string; creationDate: Date; deviceId: string; deviceName: string; } export declare class AlarmNotification { notificationType: number; notificateOnStart: boolean; notificateOnEnd: boolean; }