import { SlackNotificationEntity } from '../../accessUtility/entities/slack.notification.entity'; import { NotificationPayloadDto } from '../dtos/notification.payload.dto'; import { SlackService } from '../services/slack.service'; export declare class SendSlackMessageNotification { protected readonly notification: SlackNotificationEntity; protected readonly slackService: SlackService; private payload; protected base_url: string; protected token: string; constructor(notification: SlackNotificationEntity, slackService: SlackService); process(payload: NotificationPayloadDto): Promise; private sendMessage; private getContent; private getContext; private logMessage; }