import { ChainId } from '@dodoex/api'; export default function SwitchChainDialog({ chainId, open, onClose, }: { chainId?: ChainId; open: boolean; onClose: () => void; }): import("react").JSX.Element;