import type { Config, Connector, ResolvedRegister, SwitchConnectionErrorType } from '@wagmi/core'; import type { Compute, ConfigParameter } from '@wagmi/core/internal'; import { type SwitchConnectionData, type SwitchConnectionMutate, type SwitchConnectionMutateAsync, type SwitchConnectionOptions, type SwitchConnectionVariables } from '@wagmi/core/query'; import { type Ref } from 'vue'; import { type UseMutationReturnType } from '../utils/query.js'; export type UseSwitchConnectionParameters = Compute & SwitchConnectionOptions>; export type UseSwitchConnectionReturnType = Compute, SwitchConnectionErrorType, SwitchConnectionVariables, context, SwitchConnectionMutate, SwitchConnectionMutateAsync> & { /** @deprecated use `useConnections` instead */ connectors: Ref; /** @deprecated use `switchConnection` instead */ switchAccount: SwitchConnectionMutate; /** @deprecated use `switchConnectionAsync` instead */ switchAccountAsync: SwitchConnectionMutateAsync; /** @deprecated use `mutate` instead */ switchConnection: SwitchConnectionMutate; /** @deprecated use `mutateAsync` instead */ switchConnectionAsync: SwitchConnectionMutateAsync; }>; /** https://wagmi.sh/vue/api/composables/useSwitchConnection */ export declare function useSwitchConnection(parameters?: UseSwitchConnectionParameters): UseSwitchConnectionReturnType; //# sourceMappingURL=useSwitchConnection.d.ts.map