import type { WatchAssetErrorType } from '@wagmi/core'; import type { Compute, ConfigParameter } from '@wagmi/core/internal'; import { type WatchAssetData, type WatchAssetMutate, type WatchAssetMutateAsync, type WatchAssetOptions, type WatchAssetVariables } from '@wagmi/core/query'; import type { UseMutationReturnType } from '../utils/query.js'; export type UseWatchAssetParameters = Compute>; export type UseWatchAssetReturnType = Compute, WatchAssetMutateAsync> & { /** @deprecated use `mutate` instead */ watchAsset: WatchAssetMutate; /** @deprecated use `mutateAsync` instead */ watchAssetAsync: WatchAssetMutateAsync; }>; /** https://wagmi.sh/react/api/hooks/useWatchAsset */ export declare function useWatchAsset(parameters?: UseWatchAssetParameters): UseWatchAssetReturnType; //# sourceMappingURL=useWatchAsset.d.ts.map