import { PhoneNotificationService } from './phone/phone-notification.service'; import { FCMNotificationService } from './fcm/fcm-notification.service'; import { PHONE_PROVIDER } from './phone/phone-notification.interface'; import { NotificationSendDto } from './notification.interface'; export declare class NotificationService { private readonly phoneNotificationService; private readonly fcmNotificationService; constructor(phoneNotificationService: PhoneNotificationService, fcmNotificationService: FCMNotificationService); send(dto: NotificationSendDto): Promise<{ provider: PHONE_PROVIDER; ok: boolean; }>; }