import { SendSmtpEmailAttachment } from './sendSmtpEmailAttachment'; import { SendSmtpEmailBcc } from './sendSmtpEmailBcc'; import { SendSmtpEmailCc } from './sendSmtpEmailCc'; import { SendSmtpEmailMessageVersions } from './sendSmtpEmailMessageVersions'; import { SendSmtpEmailReplyTo } from './sendSmtpEmailReplyTo'; import { SendSmtpEmailSender } from './sendSmtpEmailSender'; import { SendSmtpEmailTo } from './sendSmtpEmailTo'; export declare class SendSmtpEmail { 'sender'?: SendSmtpEmailSender; 'to'?: Array; 'bcc'?: Array; 'cc'?: Array; 'htmlContent'?: string; 'textContent'?: string; 'subject'?: string; 'replyTo'?: SendSmtpEmailReplyTo; 'attachment'?: Array; 'headers'?: object; 'templateId'?: number; 'params'?: object; 'messageVersions'?: Array; 'tags'?: Array; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }