import { BoxProps } from '@dodoex/components'; import React from 'react'; export default function SelectChain({ chainId, setChainId, logoWidth, mobileLogoWidth, mainLogoWidth, mainMobileLogoWidth, notShowAllChain, valueOnlyIcon, sx, showNewIcon, }: { chainId: number | undefined; setChainId: (chainId: number | undefined) => void; logoWidth?: number; mobileLogoWidth?: number; mainLogoWidth?: number; mainMobileLogoWidth?: number; notShowAllChain?: boolean; valueOnlyIcon?: boolean; sx?: BoxProps['sx']; showNewIcon?: boolean; }): React.JSX.Element;