import { ConfigService } from '@nestjs/config';
export declare class SmsService {
    private configService;
    private readonly logger;
    constructor(configService: ConfigService);
    sendOTP(countryCode: string, phoneNumber: string, otp: string): Promise<boolean>;
    sendMessage(countryCode: string, phoneNumber: string, message: string): Promise<boolean>;
    private sendDummySMS;
}
