import * as react_jsx_runtime from 'react/jsx-runtime'; import SwingSDK from '@swing.xyz/sdk'; import { WalletConnector } from './connectors/index.js'; import 'wagmi'; /** * Wallet provider. * * @param params.swingSDK - The SwingSDK instance. * @param params.connectors - (Optional) Custom wallet connectors to use. You can also override using a WagmiProvider with your own Wagmi config. * @param params.walletConnectId - (Optional) WalletConnect project ID to use. You can also override using a WagmiProvider with your own Wagmi config. * @param params.debug - (Optional) Whether to enable debug logging. * @returns */ declare function WalletProvider({ children, swingSDK, walletConnectId, connectors, debug, }: { children: React.ReactNode; swingSDK: SwingSDK; walletConnectId?: string; connectors?: WalletConnector[]; debug?: boolean; }): react_jsx_runtime.JSX.Element; export { WalletProvider };