import React from 'react'; import { TWallet } from '../class/wallets/types'; export const isBalanceDisplayAllowed = async (): Promise => { return true; }; export const setBalanceDisplayAllowed = async (value: boolean): Promise => {}; export const syncWidgetBalanceWithWallets = async (_wallets: TWallet[], _walletsInitialized: boolean): Promise => {}; const WidgetCommunication: React.FC = () => { return null; // This component does not render anything. }; export default WidgetCommunication;