import type { CallErrorType, Config, ResolvedRegister } from '@wagmi/core'; import type { Compute, ConfigParameter } from '@wagmi/core/internal'; import { type CallData, type CallOptions } from '@wagmi/core/query'; import { type UseQueryReturnType } from '../utils/query.js'; export type UseCallParameters = Compute & ConfigParameter>; export type UseCallReturnType = UseQueryReturnType; /** https://wagmi.sh/react/api/hooks/useCall */ export declare function useCall(parameters?: UseCallParameters): UseCallReturnType; //# sourceMappingURL=useCall.d.ts.map