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> & { /** @deprecated use `useConnectors` instead */ connectors: readonly Connector[]; /** @deprecated use `mutate` instead */ reconnect: ReconnectMutate; /** @deprecated use `mutateAsync` instead */ reconnectAsync: ReconnectMutateAsync; }>; /** https://wagmi.sh/react/api/hooks/useReconnect */ export declare function useReconnect(parameters?: UseReconnectParameters): UseReconnectReturnType; //# sourceMappingURL=useReconnect.d.ts.map