export interface TransactionsState { readonly isWaitingTx: boolean; readonly lastTxHash: string; readonly txErrorMessage: string; } export declare const initialState: TransactionsState; export declare const setTxErrorMessage: import("@reduxjs/toolkit").ActionCreatorWithPayload, setIsWaitingTx: import("@reduxjs/toolkit").ActionCreatorWithPayload, setLastTxHash: import("@reduxjs/toolkit").ActionCreatorWithPayload, cleanLastTxHash: import("@reduxjs/toolkit").ActionCreatorWithoutPayload; declare const reducer: import("redux").Reducer; export default reducer;