import { AchievementState } from './achievementSlice';
import { NotificationState } from './notificationSlice';
export interface RootState {
    achievements: AchievementState;
    notifications: NotificationState;
}
declare const store: import("@reduxjs/toolkit/dist/configureStore").ToolkitStore<{
    achievements: AchievementState;
    notifications: NotificationState;
}, import("@reduxjs/toolkit").AnyAction, [import("@reduxjs/toolkit").ThunkMiddleware<{
    achievements: AchievementState;
    notifications: NotificationState;
}, import("@reduxjs/toolkit").AnyAction>]>;
export type AppDispatch = typeof store.dispatch;
export default store;
