export declare class TwilioService {
    private readonly accountSid;
    private readonly authToken;
    private readonly serviceSid;
    private readonly basicAuth;
    constructor();
    sendOtp(toPhoneNumber: string): Promise<any>;
    verifyOtp(toPhoneNumber: string, otpCode: string): Promise<any>;
}
