import { type DefaultError, type MutateFunction, type MutationObserverOptions, type QueryKey, type UseMutationReturnType as tanstack_UseMutationReturnType, type UseQueryReturnType as tanstack_UseQueryReturnType, type UseQueryOptions, useMutation } from '@tanstack/vue-query'; import type { Compute, ExactPartial, Omit, UnionStrictOmit } from '@wagmi/core/internal'; import { type MaybeRef } from 'vue'; import type { DeepMaybeRef, DeepUnwrapRef } from '../types/ref.js'; export { useMutation }; export type UseMutationParameters = Compute, context>>, 'mutationFn' | 'mutationKey' | 'throwOnError'>>>; export type UseMutationReturnType = Compute, 'mutate' | 'mutateAsync'> & { mutate: mutate; mutateAsync: mutateAsync; }>; export declare function useQuery(parameters: MaybeRef & { queryKey: QueryKey; }>): UseQueryReturnType; export type UseQueryParameters = Compute>, 'initialData'>> & { initialData?: DeepUnwrapRef>['initialData'] | undefined; }>>; export type UseQueryReturnType = Compute & { queryKey: QueryKey; }>; //# sourceMappingURL=query.d.ts.map