/// import { ChainId } from '@dcl/schemas'; export declare type ChainSelectorProps = { selectedChain: ChainId; chainBeingConfirmed?: ChainId; chains: ChainId[]; onSelectChain: (chain: ChainId) => void; i18n: ChainSelectori18n; }; export declare type ChainSelectori18n = { title: React.ReactNode; connected: React.ReactNode; confirmInWallet: React.ReactNode; };