export declare class Notification { userId: string; machineId: string; eventType: EventType; notificationType: NotificationType; } declare enum EventType { STOP = 0, EMERG = 1, DISCONNECT = 2 } declare enum NotificationType { EMAIL = 0, WHATS = 1, PUSH = 2 } export {};