/**
 * Chain type
 */
export declare enum ChainType {
    SOLANA = "solana",
    EVM = "evm"
}
/**
 * Type for supported chain keys
 */
export type SupportedChain = 'solana' | 'evm';
/**
 * Blockchain type
 */
export declare enum Blockchain {
    SOLANA = "solana",
    BITCOIN = "bitcoin",
    ETHEREUM = "ethereum",
    POLYGON = "polygon",
    BASE = "base",
    SEI = "sei",
    ARBITRUM = "arbitrum",
    APECHAIN = "apechain",
    BERACHAIN = "berachain",
    MONAD_TESTNET = "monad-testnet",
    BSC = "bsc",
    ABSTRACT = "abstract"
}
