import { IChainId, IChainObj } from '../../types'; export declare const SPECIAL_CHAINS: { solana: { name: string; chainId: number; explorer: string; }; stellar: { name: string; chainId: number; explorer: string; }; }; export declare const NATIVE_ADDRESS = "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE"; export declare const MIN_ABIS: { name: string; symbol: string; decimals: string; totalSupply: string; approve: string; allowance: string; managementFeePercent: string; }; export declare const ORACLE_CONTRACTS: { 1: string; 43114: string; 42161: string; 8453: string; 10: string; }; export declare const NETWORKS: Record; export declare const AVAILABLE_CHAINS: IChainId[]; export declare const FALLBACK_DECIMALS = 18; export declare const FALLBACK_CHAINID = 42161; export declare const FALLBACK_RPC_URLS: Record;