export interface HighlightChunk { chunk: string; highlighted: boolean; color?: string; } export interface HighlighterOptions { wholeWord?: boolean; } export declare function highlighter(value: string, _highlight: string | string[], options?: HighlighterOptions): HighlightChunk[];