/// import type { State as _State } from '../types/State'; import type { Action as _Action } from '../types/Action'; declare type State = _State; declare type Action = _Action; /** * React.js hook of task reducer. It returns the tuple with the state and the * function to dispatch the actions that update the status. */ declare function useTaskReducer(initialState?: {}): [State, import("react").Dispatch>]; export default useTaskReducer; //# sourceMappingURL=useTaskReducer.d.ts.map