import { MailerService, ISendMailOptions } from '@nestjs-modules/mailer'; import { ConfigService } from '@nestjs/config'; export declare class MailService { private readonly mailerService; private readonly configService; private readonly feedmeNamespace; private readonly logger; constructor(mailerService: MailerService, configService: ConfigService); cliSendMail(subject: string, body?: string): Promise; informAccount(subject: string, body?: string): Promise; sendMail(options: ISendMailOptions, includeNamespace?: boolean): Promise; notifyUser({ subject, to, html, }: { subject: string; to: string; html: string; }): Promise; error(fn: string, subject: string, error: Error): void; info(fn: string, subject: string, body?: any): void; infoDelivery(subject: string, body?: any): void; }