import { Action } from '../interfaces'; export declare type State = number; export declare function reduce(state: number | undefined, action: Action): State;