declare const authStore: import("@reduxjs/toolkit/dist/configureStore").ToolkitStore<{
    auth: import("./authSlice").AuthSliceState;
    openIdConfiguration: import("./openIdConfigSlice").OIDCSliceState;
}, import("redux").AnyAction, [import("@reduxjs/toolkit").ThunkMiddleware<{
    auth: import("./authSlice").AuthSliceState;
    openIdConfiguration: import("./openIdConfigSlice").OIDCSliceState;
}, import("redux").AnyAction>]>;
export type RootState = ReturnType<typeof authStore.getState>;
export type AppDispatch = typeof authStore.dispatch;
export declare const useAppDispatch: () => AppDispatch;
export {};
