import { ChainInfo } from '../..'; export type ChainName = 'aleo' | 'algorand' | 'aptos' | 'bitcoin' | 'cosmos' | 'eclipse' | 'evm' | 'flow' | 'midnight' | 'solana' | 'spark' | 'starknet' | 'stellar' | 'sui' | 'tempo' | 'ton' | 'tron'; export type ChainDisplayOverrides = Partial>; export declare const setChainInfoOverrides: (overrides?: ChainDisplayOverrides) => void; export declare const getChainInfo: (chain: string) => ChainInfo | undefined; export declare const getChainInfoWithOverrides: (chain: string) => ChainInfo | undefined;