import { PipeTransform } from "@angular/core"; import { DomSanitizer, SafeHtml } from "@angular/platform-browser"; /** Renders safe HTML sting as HTML */ export declare class SafeHtmlPipe implements PipeTransform { private sanitizer; constructor(sanitizer: DomSanitizer); /** * The Transform method that implements the Pipe * @param html - The HTML that we want to display. */ transform(html: string): SafeHtml; }