import { WalletConnector } from './connectors/index.mjs'; /** * Connects to a wallet on the specified chain and returns the wallet address. * If the wallet is already connected, it will switch to the specified chain. * * @param params.connector - The wallet connector to connect. * @param params.chainId - (Optional) The chain id, slug or chainId to connect. * @returns The connected wallet address. */ declare function connect(params: { connector: WalletConnector; chainId?: string; }): Promise; /** * Disconnects from a wallet. * * @param params.connector - The connector to disconnect from. */ declare function disconnect(params: { connector: WalletConnector; }): Promise; export { connect as c, disconnect as d };