/** * @param type - "evm" or "solana", extend this union as needed (e.g., "sui") * @param id - Chain ID, optional for EVM */ type Chain = { type: "evm" | "solana" | "aptos" | "chromia"; id?: number; }; type ChainToken = { symbol: string; name: string; decimals: number; }; declare function getChainToken(chain: Chain): ChainToken; export { type Chain, type ChainToken, getChainToken };