import * as React from 'react'; import reducer from './reducer'; import { Action } from './actions'; export type ReducerState = React.ReducerState; export type Dispatch = React.Dispatch; export type Value = [ReducerState, Dispatch]; declare const context: import("use-context-selector").Context; export default context;