import { SmsOtpService } from "./services/sms-otp"; import { WhatsAppService } from "./services/whatsapp"; import type { Msg91Config } from "./types"; /** * Main MSG91 client that provides access to all services */ export declare class Msg91Client { private readonly httpClient; /** SMS OTP service for sending and verifying OTPs */ readonly smsOtp: SmsOtpService; /** WhatsApp service for sending template messages */ readonly whatsapp: WhatsAppService; constructor(config: Msg91Config); } //# sourceMappingURL=client.d.ts.map