import { ClientAndSigner } from '../types/ClientAndSigner'; import { EthosConfiguration } from '../types/EthosConfiguration'; declare const useConnect: (ethosConfiguration?: EthosConfiguration, onWalletConnected?: ((clientAndSigner: ClientAndSigner) => void) | undefined) => { wallets: import("@mysten/wallet-standard").WalletWithSuiFeatures[]; clientAndSigner: ClientAndSigner; connect: (walletName: string, connectInput?: import("@wallet-standard/features").StandardConnectInput | undefined) => Promise; getState: () => import("@mysten/wallet-kit-core").WalletKitCoreState; }; export default useConnect;