import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; export declare class EmailRendererTestService { private httpClient; constructor(httpClient: HttpClient); /** * * @param html * @param subject */ post(html: string, subject: string): Observable; }