export declare class SmsService {
    private readonly sns;
    constructor();
    sendSMS(mobileNumber: string, messageToSend: string, senderId: string): Promise<boolean>;
}
