import type { Config, ResolvedRegister, ShowCallsStatusErrorType } from '@wagmi/core'; import type { Compute, ConfigParameter } from '@wagmi/core/internal'; import { type ShowCallsStatusData, type ShowCallsStatusMutate, type ShowCallsStatusMutateAsync, type ShowCallsStatusOptions, type ShowCallsStatusVariables } from '@wagmi/core/query'; import type { UseMutationReturnType } from '../utils/query.js'; export type UseShowCallsStatusParameters = Compute & ShowCallsStatusOptions>; export type UseShowCallsStatusReturnType = Compute & { /** @deprecated use `mutate` instead */ showCallsStatus: ShowCallsStatusMutate; /** @deprecated use `mutateAsync` instead */ showCallsStatusAsync: ShowCallsStatusMutateAsync; }>; /** https://wagmi.sh/react/api/hooks/useShowCallsStatus */ export declare function useShowCallsStatus(parameters?: UseShowCallsStatusParameters): UseShowCallsStatusReturnType; //# sourceMappingURL=useShowCallsStatus.d.ts.map