import type { Config, EstimateFeesPerGasErrorType, ResolvedRegister } from '@wagmi/core'; import type { Compute, ConfigParameter } from '@wagmi/core/internal'; import { type EstimateFeesPerGasData, type EstimateFeesPerGasOptions } from '@wagmi/core/query'; import type { FeeValuesType } from 'viem'; import { type UseQueryReturnType } from '../utils/query.js'; export type UseEstimateFeesPerGasParameters> = Compute & ConfigParameter>; export type UseEstimateFeesPerGasReturnType> = UseQueryReturnType; /** https://wagmi.sh/react/api/hooks/useEstimateFeesPerGas */ export declare function useEstimateFeesPerGas>(parameters?: UseEstimateFeesPerGasParameters): UseEstimateFeesPerGasReturnType; //# sourceMappingURL=useEstimateFeesPerGas.d.ts.map