import { OnModuleInit } from '@nestjs/common'; import { Mandrill, SendTemplateResponse } from './types/mandrill.interfaces'; export declare class MandrillService implements OnModuleInit { private mandrillClient; onModuleInit(): any; sendEmail(emailObj: Mandrill): Promise; }