export declare enum MainProtocolSymbols { AE = "ae", BTC = "btc", BTC_SEGWIT = "btc_segwit", ETH = "eth", XTZ = "xtz", XTZ_SHIELDED = "xtz_shielded", GRS = "grs", COSMOS = "cosmos", POLKADOT = "polkadot", KUSAMA = "kusama", MOONBASE = "moonbase", MOONRIVER = "moonriver", RSK = "rsk", CELO = "celo", BSC = "bsc" } export declare enum SubProtocolSymbols { XTZ_KT = "xtz-kt", XTZ_BTC = "xtz-btc", XTZ_USD = "xtz-usd", XTZ_KUSD = "xtz-kusd", XTZ_STKR = "xtz-stkr", XTZ_ETHTZ = "xtz-eth", XTZ_UUSD = "xtz-uusd", XTZ_YOU = "xtz-you", XTZ_W = "xtz-w", XTZ_UDEFI = "xtz-udefi", XTZ_CTEZ = "xtz-ctez", XTZ_PLENTY = "xtz-plenty", XTZ_WRAP = "xtz-wrap", XTZ_QUIPU = "xtz-quipu", ETH_ERC20 = "eth-erc20", ETH_ERC20_XCHF = "eth-erc20-xchf", CELO_ERC20 = "celo-erc20", BSC_BEP20 = "bsc-bep20" } export declare type ProtocolSymbols = MainProtocolSymbols | SubProtocolSymbols; export declare function isMainProtocolSymbol(identifier: string): identifier is MainProtocolSymbols; export declare function isSubProtocolSymbol(identifier: string): identifier is SubProtocolSymbols; export declare function isProtocolSymbol(identifier: string): identifier is ProtocolSymbols;