import { PipeTransform } from '@angular/core'; import { SafeHtml } from '@angular/platform-browser'; import { HighlightMatchType } from './highlight-match-type'; export declare class HighlightPipe implements PipeTransform { constructor(); transform(data: string, highlightText: string, option?: HighlightMatchType, caseSensitive?: boolean, highlightStyleName?: string): SafeHtml; }