import { Action } from "./"; export interface ReducerActions { [key: string]: (state: S, action: A) => S; } export declare function createReducerActions(map: ReducerActions, initial: S): (state: S | undefined, action: A) => S;