import { OrganizationEntity } from '../../../organizations'; import { UserEntity } from '../../../users'; import { EmailAddress } from '../../email'; import { EmailType } from '../enum'; export declare class SendEmailNotificationDto { type: EmailType; subject: string; sender: EmailAddress; replyTo?: string; recipient: EmailAddress; recipientCc?: EmailAddress; recipientBcc?: EmailAddress; htmlBody: string; textBody: string; createdByUser?: UserEntity; organization: OrganizationEntity; }