import type { Wallet } from "@reactive-dot/core/wallets.js"; /** * Composable for disconnecting wallets * * @param wallets - Wallets to disconnect from, will disconnect from all connected wallets if none is specified * @returns The wallet disconnection state & disconnect function */ export declare function useWalletDisconnector(wallets?: Wallet | Wallet[]): { execute: (wallets?: Wallet | Wallet[] | undefined) => Promise; data: import("vue").Ref; error: import("vue").Ref; status: import("vue").Ref<"idle" | "pending" | "success" | "error">; }; //# sourceMappingURL=use-wallet-disconnector.d.ts.map