import { SagaMiddleware } from 'redux-saga'; import { Router } from 'router5'; import { IAdvancedStore } from '../../types'; declare type ParamsType = { rootReducersPackage: Record; asyncReducersPackage: Record; sagaMiddleware: SagaMiddleware; store: IAdvancedStore; isSSR?: boolean; router?: Router; asyncSagas?: Record; rootSagas?: Record; initialState?: Record; rootSaga: any; }; export declare const enrichStore: ({ rootReducersPackage, asyncReducersPackage, sagaMiddleware, store, isSSR, router, initialState, rootSaga, }: ParamsType) => void; export {};