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