import { FCMNotificationSendOption } from './fcm/fcm-notification.interface'; import { PhoneNotificationSendOption } from './phone/phone-notification.interface'; export declare enum NOTIFICATION_TYPE { phone = "PHONE", email = "EMAIL", fcm = "FCM", websocket = "WEBSOCKET", posEvent = "POS_EVENT" } export interface NotificationSendDto { target: string; title?: string; message: string; option: PhoneNotificationSendOption | FCMNotificationSendOption; }