import { type Config, type EstimateMaxPriorityFeePerGasErrorType, type ResolvedRegister } from '@wagmi/core'; import { type Evaluate } from '@wagmi/core/internal'; import { type EstimateMaxPriorityFeePerGasData, type EstimateMaxPriorityFeePerGasOptions, type EstimateMaxPriorityFeePerGasQueryFnData, type EstimateMaxPriorityFeePerGasQueryKey } from '@wagmi/core/query'; import type { ConfigParameter, MaybeRefDeep, QueryParameter } from '../types.js'; import { type UseQueryReturnType } from '../utils/query.js'; export type UseEstimateMaxPriorityFeePerGasParameters = MaybeRefDeep & ConfigParameter & QueryParameter>>>; export type UseEstimateMaxPriorityFeePerGasReturnType = UseQueryReturnType; /** https://wagmi.sh/react/api/hooks/useEstimateMaxPriorityFeePerGas */ export declare function useEstimateMaxPriorityFeePerGas(parameters?: UseEstimateMaxPriorityFeePerGasParameters): UseEstimateMaxPriorityFeePerGasReturnType; //# sourceMappingURL=useEstimateMaxPriorityFeePerGas.d.ts.map