import IEmail from './IEmail'; export default interface IAccountConfirmationEmail extends IEmail { readonly Attachments?: { readonly Name: string; readonly ContentID: string; readonly Content: string; readonly ContentType: string; }[]; readonly TemplateModel: { readonly subject: string; readonly mail_icon: string; readonly title: string; readonly subtitle: string; readonly username: string; readonly email: string; readonly btn_href: string; readonly btn_label: string; readonly text: string; readonly company_logo_onwhite_src: string; readonly [key: string]: any; }; }