import { IGateway } from '../interfaces'; import { MailContentOptions } from '../types'; export declare class MailSenderService { private readonly gateways; private readonly templateDelegatesCache; constructor(gateways: IGateway[]); sendEmail(to: string, mailContentOptions: MailContentOptions, context?: Record): Promise; private prepareContent; private getTemplateDelegate; private compileTemplate; }