import { FetchFeeDataArgs, FetchFeeDataResult } from '@wagmi/core'; import { QueryConfig } from '../../types'; declare type UseFeeDataArgs = Partial & { /** Subscribe to changes */ watch?: boolean; }; export declare type UseFeedDataConfig = QueryConfig; export declare const queryKey: ({ chainId, formatUnits, }: Partial & { chainId?: number | undefined; }) => readonly [{ readonly entity: "feeData"; readonly chainId: number | undefined; readonly formatUnits: number | "wei" | "kwei" | "mwei" | "gwei" | "szabo" | "finney" | "ether" | undefined; }]; export declare function useFeeData({ cacheTime, chainId: chainId_, enabled, formatUnits, staleTime, suspense, watch, onError, onSettled, onSuccess, }?: UseFeeDataArgs & UseFeedDataConfig): Pick, "data" | "error" | "isError" | "isLoading" | "isSuccess" | "isFetched" | "isFetching" | "isRefetching" | "refetch" | "fetchStatus"> & { isIdle: boolean; status: "error" | "loading" | "success" | "idle"; internal: Pick, "isLoadingError" | "isRefetchError" | "dataUpdatedAt" | "errorUpdatedAt" | "failureCount" | "isFetchedAfterMount" | "isPaused" | "isPlaceholderData" | "isPreviousData" | "isStale" | "remove">; }; export {};