import { WalletContextState } from '@solana/wallet-adapter-react'; import { Adapter } from '@solana/wallet-adapter-base'; import { IUnifiedWalletConfig } from './WalletConnectionProvider'; import { useUnifiedWallet, useUnifiedWalletContext } from './UnifiedWalletContext'; export type IWalletProps = Omit; declare const UnifiedWalletProvider: ({ wallets, config, children, localStorageKey, }: { wallets: Adapter[]; config: IUnifiedWalletConfig; children: React.ReactNode; localStorageKey?: string; }) => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element; export { UnifiedWalletProvider, useUnifiedWallet, useUnifiedWalletContext };