/************ Processor: ts ************/ // mailer.ts declare namespace ns_0 { export class Mailer { #private; constructor({ host, port, user, pass }: { host: any; port: any; user: any; pass: any; }); send({ from, to, subject, text, html, attachments }: { from: any; to: any; subject: any; text: any; html: any; attachments: any; }): Promise<{ status: boolean; response: any; }>; } } export import Mailer = ns_0.Mailer; export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };