import { Highlight } from '../types'; export interface HighlightsContext { highlights?: Highlight[]; } /** Context for storing `Highlight` to distribute it to UI Controls * @category React Context */ export declare const HighlightsContext: import("react").Context;