import type { Wallet } from "@reactive-dot/core/wallets.js"; /** * Composable for connecting wallets * * @param wallets - Wallets to connect to, will connect to all available wallets if none is specified * @returns The wallet connection state & connect function */ export declare function useWalletConnector(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-connector.d.ts.map