/** @packageDocumentation * @module Common */ /** * Item highlight info used for identification of a specific highlight in an item * @beta */ export interface HighlightInfo { highlightedItemIdentifier: string; highlightIndex: number; } /** * Properties used for highlighting parts in item by given text and actively highlighting one highlight in a distinct item specified in `activeHighlight` * @beta */ export interface HighlightingComponentProps { highlightedText: string; activeHighlight?: HighlightInfo; } //# sourceMappingURL=HighlightingComponentProps.d.ts.map