export declare type ChainType = 'ETHEREUM' | 'BITCOIN' | 'LITECOIN' | 'EOS' | 'COSMOS' | 'TRON' | 'BITCOINCASH' | 'NERVOS' | 'KUSAMA' | 'POLKADOT' | 'FILECOIN'; declare const user: { /** * Show switchable user wallets. If the switch is successful, the new address will be returned. */ showAccountSwitch: (chainType?: ChainType | null) => Promise; }; export default user;