import { IBulkState } from './bulk/bulk/store/model'; import { ISingleState } from './single/single/store/model'; export interface Store { single: ISingleState; bulk: IBulkState; } export type RootState = ReturnType; export type AppDispatch = typeof store.dispatch; export declare const store: import("@reduxjs/toolkit/dist/configureStore").ToolkitStore[]>; //# sourceMappingURL=store.d.ts.map