import type { Config, ResolvedRegister, SendTransactionSyncErrorType } from '@wagmi/core'; import type { Compute, ConfigParameter } from '@wagmi/core/internal'; import { type SendTransactionSyncData, type SendTransactionSyncMutate, type SendTransactionSyncMutateAsync, type SendTransactionSyncOptions, type SendTransactionSyncVariables } from '@wagmi/core/query'; import type { UseMutationReturnType } from '../utils/query.js'; export type UseSendTransactionSyncParameters = Compute & SendTransactionSyncOptions>; export type UseSendTransactionSyncReturnType = Compute, context, SendTransactionSyncMutate, SendTransactionSyncMutateAsync> & { /** @deprecated use `mutate` instead */ sendTransactionSync: SendTransactionSyncMutate; /** @deprecated use `mutateAsync` instead */ sendTransactionSyncAsync: SendTransactionSyncMutateAsync; }>; /** https://wagmi.sh/react/api/hooks/useSendTransactionSync */ export declare function useSendTransactionSync(parameters?: UseSendTransactionSyncParameters): UseSendTransactionSyncReturnType; //# sourceMappingURL=useSendTransactionSync.d.ts.map