export interface Action {
    type: any;
}
export declare type Reducer<T = any, A extends Action = Action> = (value: T, action: A) => T;
export interface ReducerMap {
    [key: string]: Reducer<any> | ReducerMap;
}
