import type { Config, ConnectErrorType, GetConnectorsReturnType, ResolvedRegister } from '@wagmi/core'; import type { Compute, ConfigParameter } from '@wagmi/core/internal'; import { type ConnectData, type ConnectMutate, type ConnectMutateAsync, type ConnectOptions, type ConnectVariables } from '@wagmi/core/query'; import type { UseMutationReturnType } from '../utils/query.js'; export type UseConnectParameters = Compute & ConnectOptions>; export type UseConnectReturnType = Compute, ConnectErrorType, ConnectVariables, context, ConnectMutate, ConnectMutateAsync> & { /** @deprecated use `mutate` instead */ connect: ConnectMutate; /** @deprecated use `mutateAsync` instead */ connectAsync: ConnectMutateAsync; /** @deprecated use `useConnectors` instead */ connectors: Compute | config['connectors']; }>; /** https://wagmi.sh/vue/api/composables/useConnect */ export declare function useConnect(parameters?: UseConnectParameters): UseConnectReturnType; //# sourceMappingURL=useConnect.d.ts.map