import { BaseNotificationService } from '../base/base-notification.service'; import { MoceanPhoneService } from './mocean/mocean-phone-notification.service'; import { AWSPhoneService } from './aws/aws-phone-notification.service'; import { PHONE_PROVIDER } from './phone-notification.interface'; import { NOTIFICATION_TYPE } from '../notification.interface'; export declare class PhoneNotificationService extends BaseNotificationService { private readonly moceanPhoneService; private readonly awsPhoneService; protected readonly logger: any; constructor(moceanPhoneService: MoceanPhoneService, awsPhoneService: AWSPhoneService); protected type: NOTIFICATION_TYPE; private getService; send(phone: string, message: string, provider: PHONE_PROVIDER): Promise<{ provider: PHONE_PROVIDER; ok: boolean; }>; }