import type { Config, ResolvedRegister, SendTransactionErrorType } from '@wagmi/core'; import type { Compute, ConfigParameter } from '@wagmi/core/internal'; import { type SendTransactionData, type SendTransactionMutate, type SendTransactionMutateAsync, type SendTransactionOptions, type SendTransactionVariables } from '@wagmi/core/query'; import type { UseMutationReturnType } from '../utils/query.js'; export type UseSendTransactionParameters = Compute & SendTransactionOptions>; export type UseSendTransactionReturnType = Compute, context, SendTransactionMutate, SendTransactionMutateAsync> & { /** @deprecated use `mutate` instead */ sendTransaction: SendTransactionMutate; /** @deprecated use `mutateAsync` instead */ sendTransactionAsync: SendTransactionMutateAsync; }>; /** https://wagmi.sh/vue/api/composables/useSendTransaction */ export declare function useSendTransaction(parameters?: UseSendTransactionParameters): UseSendTransactionReturnType; //# sourceMappingURL=useSendTransaction.d.ts.map