import { PipeTransform } from '@angular/core'; import { DomSanitizer, SafeHtml, SafeResourceUrl, SafeScript, SafeStyle, SafeUrl } from '@angular/platform-browser'; import { ContentType } from '../types/content.type'; export declare class SafePipe implements PipeTransform { private sanitizer; constructor(sanitizer: DomSanitizer); transform(value: string, type?: ContentType): SafeHtml | SafeStyle | SafeScript | SafeUrl | SafeResourceUrl; }