import { PipeTransform } from '@angular/core';
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
import * as i0 from "@angular/core";
/** Is meant to be sanitized to declarative html for use in a template */
export declare class StringAsSanitizedHtmlPipe implements PipeTransform {
    private sanitized;
    constructor(sanitized: DomSanitizer);
    transform(value: string): SafeHtml;
    static ɵfac: i0.ɵɵFactoryDeclaration<StringAsSanitizedHtmlPipe, never>;
    static ɵpipe: i0.ɵɵPipeDeclaration<StringAsSanitizedHtmlPipe, "asSanitizedHtml", false>;
}
