import { NotificationPayloadDto } from '../dtos/notification.payload.dto'; import { NotificationService } from '../services/notification.service'; export declare class ProcessNotification { protected readonly notificationService: NotificationService; private payload; constructor(notificationService: NotificationService); process(payload: NotificationPayloadDto): Promise; private handleEmail; private handleSmsMessage; private handleSlack; private handleSlackWebhook; private handleWhatsapp; private handleFcmNotification; private handleGchat; private handleGchatWebhook; }