import type { Config, EstimateGasErrorType, ResolvedRegister } from '@wagmi/core'; import type { ConfigParameter } from '@wagmi/core/internal'; import { type EstimateGasData, type EstimateGasOptions } from '@wagmi/core/query'; import type { DeepMaybeRef } from '../types/ref.js'; import { type UseQueryReturnType } from '../utils/query.js'; export type UseEstimateGasParameters = DeepMaybeRef & ConfigParameter>; export type UseEstimateGasReturnType = UseQueryReturnType; /** https://wagmi.sh/react/api/hooks/useEstimateGas */ export declare function useEstimateGas(parameters?: UseEstimateGasParameters): UseEstimateGasReturnType; //# sourceMappingURL=useEstimateGas.d.ts.map