import { Attributes, Component } from 'jinge'; export interface HighlightTextAttrs { term: string; text: string; class?: string; style?: string; searchMethod?: 'fuzzy' | 'includes' | 'starts'; ignoreCase?: boolean; } export declare class HighlightText extends Component { static template: string; _term: string; searchMethod?: 'fuzzy' | 'includes' | 'starts'; ignoreCase?: boolean; _text: string; constructor(attrs: Attributes); get term(): string; set term(v: string); get text(): string; set text(v: string); __afterRender(): void; __update(): void; }