import { Service } from '../Core/index'; import { SmsMessage } from './Sms_ovhTypes'; /** * SMS via OVH * * SMS sender, to send text messages to mobile phones * This SMS sending service uses the OVH API * * */ export declare class Sms_ovh extends Service { /** * Get deployment type associated to Sms_ovh service * @return {string} */ static readonly DEPLOYMENT_TYPE: string; /** * Get default deployment id associated to Sms_ovh service * @return {string} */ static readonly DEFAULT_DEPLOYMENT_ID: string; /** * SMS service * * User API for SMS. * @access public * */ /** * Sends an SMS * * Sends the given message to the given recipients. * @access public * */ send(body: SmsMessage): void; }