import { PipeTransform } from "@angular/core"; import { DomSanitizer, SafeUrl } from "@angular/platform-browser"; import * as i0 from "@angular/core"; export declare class TrustedUrlPipe implements PipeTransform { private sanitizer; constructor(sanitizer: DomSanitizer); /** * Bypass security and trust the given value to be a safe style URL, * i.e. a value that can be used in hyperlinks or . * * @param url URL string * @param isResourceUrl Indicated whether URL string is resource URL * @returns SafeUrl string, details: {@link SafeUrl} */ transform(url: string, isResourceUrl?: boolean): SafeUrl; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵpipe: i0.ɵɵPipeDeclaration; }