import type { Config, ResolvedRegister, SendTransactionErrorType } from '@wagmi/core'; import type { Evaluate } from '@wagmi/core/internal'; import { type SendTransactionData, type SendTransactionMutate, type SendTransactionMutateAsync, type SendTransactionVariables } from '@wagmi/core/query'; import type { ConfigParameter, MaybeRef } from '../types.js'; import type { UseMutationParameters, UseMutationReturnType } from '../utils/query.js'; export type UseSendTransactionParameters = Evaluate> & { mutation?: UseMutationParameters, context> | undefined; }>; export type UseSendTransactionReturnType = Evaluate, context> & { sendTransaction: SendTransactionMutate; sendTransactionAsync: SendTransactionMutateAsync; }>; /** https://wagmi.sh/react/api/hooks/useSendTransaction */ export declare function useSendTransaction(parameters?: UseSendTransactionParameters): UseSendTransactionReturnType; //# sourceMappingURL=useSendTransaction.d.ts.map