export declare class Email { to: Array; cc: Array; cco: Array; bcc: Array; attachments: Array; subject: string; body: string; from: string; /** * It assigns a string to subject * @param subject */ setSubject(subject: string): void; /** * It assigns a string to body * @param subject */ setBody(body: string): void; /** * It add new attachment to the array attachments * @param attachment */ addAttachment(attachment: string): void; /** * It add new string to the array to * @param to */ addTo(to: string): void; /** * It adds string to the array cc * @param cc */ addCc(cc: string): void; /** * It adds string to the array cco * @param cco */ addCco(cco: string): void; /** * It adds string to the array cco * @param Bcc */ addBcc(bcc: string): void; /** * It assigns a string to from * @param subject */ setFrom(from: string): void; }