import type { Config, ResolvedRegister, SendCallsErrorType } from '@wagmi/core'; import type { Compute, ConfigParameter } from '@wagmi/core/internal'; import { type SendCallsData, type SendCallsMutate, type SendCallsMutateAsync, type SendCallsOptions, type SendCallsVariables } from '@wagmi/core/query'; import type { UseMutationReturnType } from '../utils/query.js'; export type UseSendCallsParameters = Compute & SendCallsOptions>; export type UseSendCallsReturnType = Compute, context, SendCallsMutate, SendCallsMutateAsync> & { /** @deprecated use `mutate` instead */ sendCalls: SendCallsMutate; /** @deprecated use `mutateAsync` instead */ sendCallsAsync: SendCallsMutateAsync; }>; /** https://wagmi.sh/react/api/hooks/useSendCalls */ export declare function useSendCalls(parameters?: UseSendCallsParameters): UseSendCallsReturnType; //# sourceMappingURL=useSendCalls.d.ts.map