import { AsyncThunk } from '@reduxjs/toolkit'; import { BaseThunkArgs, ThunkArgs, GetThunkAPI, AsyncThunkConfig, AsyncThunkPayloadCreator } from './web3.thunk.type'; export declare const Web3ThunkProviderFactory: (type: string, stateActions: BaseThunkArgs) => (args: ThunkArgs, contractAddress: (thunkAPI: GetThunkAPI) => Promise, thunk: AsyncThunkPayloadCreator) => AsyncThunk;