import { type Ref, type ShallowRef } from "vue"; type IWeb3AuthContextForWalletServices = { getPlugin: (pluginName: string) => unknown; isInitialized: Ref; isConnected: Ref; }; export type IWalletServicesInnerContextValue = { plugin: ShallowRef; ready: Ref; connecting: Ref; }; export declare function useWalletServicesInnerContextValue(web3AuthContext: IWeb3AuthContextForWalletServices): IWalletServicesInnerContextValue; export {};