import { ActionInterface } from '../action/interface';
export declare type ReduxReducerFunctionType<S, P> = (state: S, action?: ActionInterface<P>) => S;
