import { ChainId } from '../types/base.js'; export declare enum ChainType { EVM = "EVM", SVM = "SVM", UTXO = "UTXO", TVM = "TVM", MVM = "MVM", ECLIPSE = "ECLIPSE" } export declare const getChainTypeFromAddress: (address: string) => ChainType | undefined; export declare const defaultChainIdsByType: { EVM: ChainId; SVM: ChainId; UTXO: ChainId; TVM: ChainId; MVM: ChainId; ECLIPSE: ChainId; };