import { AptosChain } from './types'; export declare enum AptosChainId { DEV_NET = "aptos:devnet", TEST_NET = "aptos:testnet", MAIN_NET = "aptos:mainnet" } export declare const AptosDevnetChain: AptosChain; export declare const AptosTestnetChain: AptosChain; export declare const UnknownChain: AptosChain; export declare const DefaultAptosChains: AptosChain[];