import type { Config, ResolvedRegister, SendCallsSyncErrorType } from '@wagmi/core'; import type { Compute, ConfigParameter } from '@wagmi/core/internal'; import { type SendCallsSyncData, type SendCallsSyncMutate, type SendCallsSyncMutateAsync, type SendCallsSyncOptions, type SendCallsSyncVariables } from '@wagmi/core/query'; import type { UseMutationReturnType } from '../utils/query.js'; export type UseSendCallsSyncParameters = Compute & SendCallsSyncOptions>; export type UseSendCallsSyncReturnType = Compute, context, SendCallsSyncMutate, SendCallsSyncMutateAsync> & { /** @deprecated use `mutate` instead */ sendCallsSync: SendCallsSyncMutate; /** @deprecated use `mutateAsync` instead */ sendCallsSyncAsync: SendCallsSyncMutateAsync; }>; /** https://wagmi.sh/react/api/hooks/useSendCallsSync */ export declare function useSendCallsSync(parameters?: UseSendCallsSyncParameters): UseSendCallsSyncReturnType; //# sourceMappingURL=useSendCallsSync.d.ts.map