import { Dispatch } from 'react'; import { ISearchState, SearchAction } from '../types'; export interface ISearchContext { state: ISearchState; dispatch: Dispatch; } export declare const SearchContext: import('react').Context;