import InfobipConfig from "./config"; export interface SMSOptions { from: string; to: string | Array; text: string; } export interface BulkSMSOptions extends Array { } export declare class SMS { private config; private transport; constructor(config: InfobipConfig); /** * Send HTTP POST Request to Infobip * to send a sms * * @param options */ send(options: SMSOptions): Promise<{}>; /** * Send HTTP POST Request to Infobip * to send bulk sms * * @param options */ sendBulk(options: BulkSMSOptions): Promise<{}>; }