/** * Switch wallet * * @returns Function to switch wallet * * @example * ```tsx * const App = () => { * const userWallets = useUserWallets(); * const switchWallet = useSwitchWallet(); * * return ( *
* {userWallets.map((wallet) => ( * * ))} *
* ); * } */ export declare const useSwitchWallet: () => (walletId: string) => Promise;