import { Action } from 'redux-actions'; import { IApplicationState } from './types'; export declare const defaultState: Partial; export declare const buildInitState: (parentWindowState?: Partial) => Partial; export declare const reducerMap: { [key: string]: (state: IApplicationState, action?: Action) => IApplicationState; }; export declare const reducerCreator: (parentState?: Partial) => import("redux-actions").ReduxCompatibleReducer; export default reducerCreator;