/** * DevExpress Analytics (widgets\_searchHighlighting.d.ts) * Version: 25.2.7 * Build date: May 5, 2026 * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { Observable, Computed } from 'knockout'; import { ISearchOptions } from '../property-grid/widgets/internal/_utils'; import { Disposable } from '../serializer/disposable'; export interface ISearchHighlightOptions { text: string | Observable; textToSearch: string | Observable | Computed; searchOptions?: ISearchOptions; } export declare class HighlightEngine extends Disposable { private _$spanProtect; private _$spanSearch; private _options; private _update; content: string; update(options: ISearchHighlightOptions): void; private _getHighlightContent; constructor(options: ISearchHighlightOptions); }