import type { Connector, ReconnectErrorType } from '@wagmi/core'; import type { Compute, ConfigParameter } from '@wagmi/core/internal'; import { type ReconnectData, type ReconnectMutate, type ReconnectMutateAsync, type ReconnectOptions, type ReconnectVariables } from '@wagmi/core/query'; import { type UseMutationReturnType } from '../utils/query.js'; export type UseReconnectParameters = Compute>; export type UseReconnectReturnType = Compute, ReconnectMutateAsync> & { connectors: readonly Connector[]; /** @deprecated use `mutate` instead */ reconnect: ReconnectMutate; /** @deprecated use `mutateAsync` instead */ reconnectAsync: ReconnectMutateAsync; }>; /** https://wagmi.sh/vue/api/composables/useReconnect */ export declare function useReconnect(parameters?: UseReconnectParameters): UseReconnectReturnType; //# sourceMappingURL=useReconnect.d.ts.map