import { ReducerCreator } from '../types/reducer';
import { UnknownAction } from '../types/common';
export declare function setupReducer<State, Action extends UnknownAction<string>>(initialState: State): ReducerCreator<State, Action>;
