import { PipeTransform } from '@angular/core';
import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
import * as i0 from "@angular/core";
/**
 * Url Sanitizer pipe.
 *
 * This trusts URLs that exist in a safe list defined in our environments.ts file.
 * Any other URLs will NOT be trusted, thus will not be loaded.
 */
export declare class StyleBypass implements PipeTransform {
    private sanitizer;
    constructor(sanitizer: DomSanitizer);
    transform(url: string): SafeUrl;
    static ɵfac: i0.ɵɵFactoryDeclaration<StyleBypass, never>;
    static ɵpipe: i0.ɵɵPipeDeclaration<StyleBypass, "stylebypass", true>;
}
