import { HttpService } from './http.service'; import * as i0 from "@angular/core"; export interface MailSendData { template: string; params: any; to: Array; subject: string; replyTo?: string; } export declare class MailService { private httpService; constructor(httpService: HttpService); send(data: MailSendData): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }