import { ConfigService } from '@nestjs/config'; import { BasePhoneNotificationService } from '../base/base-phone-notifiaction.service'; import { PHONE_PROVIDER, SendResponse } from '../phone-notification.interface'; export declare class AWSPhoneService extends BasePhoneNotificationService { private readonly configService; protected readonly logger: any; constructor(configService: ConfigService); provider: PHONE_PROVIDER; private getClient; send(phone: string, message: string): Promise; }