import { IApplicationState } from './application/types'; import { IConfigState } from './config/types'; export * from './application/actions'; export * from './application/types'; export * from './config/actions'; export * from './config/types'; export interface IRootState { application: IApplicationState; config: IConfigState; } export declare const rootDefaultState: { application: Partial; config: IConfigState; }; export declare const buildInitState: (parentRootState?: IRootState) => { application: Partial; config: IConfigState; }; export declare const buildRootReducer: (parentRootState?: IRootState) => (state: {}, action: any) => {}; export default buildRootReducer;