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