import { State } from '../types';
import { TimerActionsType } from './actions';
declare function reducer(state: State, action: TimerActionsType): State;
export default reducer;
