import type { MailAttachment } from './email.interface'; declare class MailBody { to: string[]; cc: string[]; bcc: string[]; subject: string; content: string; attachments: MailAttachment[]; } export declare class EmailController { send(body: MailBody): void; } export {};