import { BaseNotificationSendOption } from '../base/base-notification.interface'; import { NOTIFICATION_TYPE } from '../notification.interface'; export declare enum PHONE_PROVIDER { aws = "AWS", mocean = "MOCEAN" } export interface SendResponse { message: string; phone: string; } export interface PhoneNotificationSendOption extends BaseNotificationSendOption { type: NOTIFICATION_TYPE.phone; provider: PHONE_PROVIDER; }