import { ConnectedEthereumWallet, type ConnectEthereumWalletOptions } from "../connect/evm.js"; import { ConnectedSolanaWallet, type ConnectSolanaWalletOptions } from "../connect/solana.js"; export * from "../connect/evm.js"; export * from "../connect/solana.js"; export type ConnectExternalWalletOptions = ConnectEthereumWalletOptions | ConnectSolanaWalletOptions; export type ConnectedExternalWallet = ConnectedEthereumWallet | ConnectedSolanaWallet; //# sourceMappingURL=index.d.ts.map