export interface ISendEmail { html: string; text: string; subject: string; } export interface ISendSMS { text: string; }