import { Action } from "./actions"; declare type Reducer = (state: { addition: boolean; subtraction: boolean; }, action: Action) => { addition: boolean; subtraction: boolean; }; declare const reducer: Reducer; export default reducer;