import { type Config, type GetGasPriceErrorType, type ResolvedRegister } from '@wagmi/core'; import { type Evaluate } from '@wagmi/core/internal'; import { type GetGasPriceData, type GetGasPriceOptions, type GetGasPriceQueryFnData, type GetGasPriceQueryKey } from '@wagmi/core/query'; import type { ConfigParameter, MaybeRefDeep, QueryParameter } from '../types.js'; import { type UseQueryReturnType } from '../utils/query.js'; export type UseGasPriceParameters = MaybeRefDeep & ConfigParameter & QueryParameter>>>; export type UseGasPriceReturnType = UseQueryReturnType; /** https://wagmi.sh/react/api/hooks/useGasPrice */ export declare function useGasPrice(parameters?: UseGasPriceParameters): UseGasPriceReturnType; //# sourceMappingURL=useGasPrice.d.ts.map