import { PipeTransform } from '@angular/core'; import { DomSanitizer, SafeHtml, SafeResourceUrl, SafeScript, SafeStyle, SafeUrl } from '@angular/platform-browser'; import * as i0 from "@angular/core"; export declare class ZekSafePipe implements PipeTransform { private sanitizer; constructor(sanitizer: DomSanitizer); /** * Transform * * @param value: string * @param type: string html, style, script, url, resourceUrl */ transform(value: string, type?: '' | 'html' | 'style' | 'script' | 'url' | 'resourceUrl' | null): SafeHtml | SafeStyle | SafeScript | SafeUrl | SafeResourceUrl; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵpipe: i0.ɵɵPipeDeclaration; }