import { type Connector, type ReconnectErrorType } from '@wagmi/core'; import type { Evaluate } from '@wagmi/core/internal'; import { type ReconnectData, type ReconnectMutate, type ReconnectMutateAsync, type ReconnectVariables } from '@wagmi/core/query'; import type { ConfigParameter, MaybeRef } from '../types.js'; import type { UseMutationParameters, UseMutationReturnType } from '../utils/query.js'; export type UseReconnectParameters = Evaluate & { mutation?: UseMutationParameters | undefined; }>; export type UseReconnectReturnType = Evaluate & { connectors: readonly Connector[]; reconnect: ReconnectMutate; reconnectAsync: ReconnectMutateAsync; }>; /** https://wagmi.sh/react/api/hooks/useReconnect */ export declare function useReconnect(parameters?: UseReconnectParameters): UseReconnectReturnType; //# sourceMappingURL=useReconnect.d.ts.map