export type Network = SupportedNetwork | TenantNetwork; export type SupportedNetwork = PublicNetwork | CustomNetwork; export type PublicNetwork = 'abstract-sepolia' | 'abstract' | 'alfajores' | 'amoy' | 'arbitrum-nova' | 'arbitrum-sepolia' | 'arbitrum' | 'atlantic-2' | 'aurora' | 'auroratest' | 'avalanche' | 'base-sepolia' | 'base' | 'bsc' | 'bsctest' | 'celo' | 'fantom' | 'fantomtest' | 'fuji' | 'fuse' | 'geist-mainnet' | 'geist-polter' | 'hedera' | 'hederatest' | 'holesky' | 'japan-testnet' | 'japan' | 'linea-goerli' | 'linea-sepolia' | 'linea' | 'mainnet' | 'mantle-sepolia' | 'mantle' | 'matic-zkevm-testnet' | 'matic-zkevm' | 'matic' | 'meld-kanazawa' | 'meld' | 'moonbase' | 'moonbeam' | 'moonriver' | 'mumbai' | 'optimism-sepolia' | 'optimism' | 'peaq-agung' | 'peaq-mainnet' | 'rayls-devnet' | 'scroll-sepolia' | 'scroll' | 'sei' | 'sepolia' | 'sokol' | 'unichain-sepolia' | 'unichain' | 'xdai' | 'zksync-sepolia' | 'zksync'; export type CustomNetwork = 'x-dfk-avax-chain' | 'x-dfk-avax-chain-test' | 'x-security-alliance'; export type TenantNetwork = string; export declare const Networks: Network[]; export declare function isValidNetwork(text: string): text is Network; export declare function fromChainId(chainId: number): Network | undefined; export declare function toChainId(network: Network): number | undefined; export declare const chainIds: { [key in Network]: number; }; //# sourceMappingURL=network.d.ts.map