import React, { ReactNode } from 'react'; import { ContextType, State } from '../types'; export declare const initialState: State; export declare const context: React.Context; /** * @returns context data and helper function */ export declare const useReactSearchHighlight: () => ContextType; export declare const ReactSearchHighlightProvider: React.FC<{ children: ReactNode; }>;