type NetworkSelectorProps = {
onClose?: () => void;
onCustomClick?: () => void;
onSwitch?: (chain: bigint) => void;
open: boolean;
popularChains?: Array<Chain>; recentChains?: Array<Chain>; renderChain?: React.FC<NetworkSelectorChainProps>;
theme?: "dark" | "light" | Theme; };