import { Logger } from '@nestjs/common'; import { NOTIFICATION_TYPE } from '../notification.interface'; export declare abstract class BaseNotificationService { protected abstract readonly logger: Logger; constructor(); protected abstract type: NOTIFICATION_TYPE; }