import { AsyncThunkAction, ThunkAction } from '@reduxjs/toolkit'; declare module 'redux' { export interface Dispatch { >(thunk: TThunk): ReturnType; ( thunkAction: ThunkAction, ): ReturnType; } }