import type { PipeTransform } from '@angular/core';
import type { SafeHtml } from '@angular/platform-browser';
import * as i0 from "@angular/core";
/**
 * Sanitize a string as trusted HTML.
 *
 * @see `DomSanitizer`
 */
export declare class SanitizeHtmlPipe implements PipeTransform {
    private _sanitizer;
    /**
     * Return the result of `bypassSecurityTrustHtml` function of DomSanitizer for the parameter.
     *
     * @param v The string to be transformed.
     * @returns The SafeHtml from the DomSanitizer.
     */
    transform(v: string): SafeHtml;
    static ɵfac: i0.ɵɵFactoryDeclaration<SanitizeHtmlPipe, never>;
    static ɵpipe: i0.ɵɵPipeDeclaration<SanitizeHtmlPipe, "sanitizeHtml", true>;
}
