import React from 'react'; interface ChainSwitcherProps { onSwitch?: (chainId: string, success: boolean) => void; className?: string; } /** * A component that allows users to switch between configured chains */ declare const ChainSwitcher: React.FC; export default ChainSwitcher;