/** * SMS message containing plain text only. */ export interface SmsContent { /** Message content. */ text: string; }