import type { EthWalletConnectorBase } from '../classes/index.ts'; /** Initiate a connection to the passed in wallet */ export declare const useConnectWallet: (ethWalletConnector?: EthWalletConnectorBase) => { connectError: Error | undefined; connectRefused: boolean; connectWallet: () => Promise; } | { connectError?: undefined; connectRefused?: undefined; connectWallet?: undefined; }; //# sourceMappingURL=useConnect.d.ts.map