import { type Config, type Connector, type ResolvedRegister, type SwitchAccountErrorType } from '@wagmi/core'; import type { Evaluate } from '@wagmi/core/internal'; import { type SwitchAccountData, type SwitchAccountMutate, type SwitchAccountMutateAsync, type SwitchAccountVariables } from '@wagmi/core/query'; import { type Ref } from 'vue-demi'; import type { ConfigParameter, MaybeRefDeep } from '../types.js'; import type { UseMutationParameters, UseMutationReturnType } from '../utils/query.js'; export type UseSwitchAccountParameters = Evaluate> & { mutation?: UseMutationParameters, SwitchAccountErrorType, SwitchAccountVariables, context> | undefined; }>; export type UseSwitchAccountReturnType = Evaluate, SwitchAccountErrorType, SwitchAccountVariables, context> & { connectors: Ref; switchAccount: SwitchAccountMutate; switchAccountAsync: SwitchAccountMutateAsync; }>; /** https://wagmi.sh/react/api/hooks/useSwitchAccount */ export declare function useSwitchAccount(parameters?: UseSwitchAccountParameters): UseSwitchAccountReturnType; //# sourceMappingURL=useSwitchAccount.d.ts.map