import { ChainId, Protocols } from '@ape.swap/apeswap-lists'; declare enum NetworkNames { MAINNET = "eth", BNB = "bnb", POLYGON = "pol", ARBITRUM = "arb", LINEA = "lna", BASE = "bas", AVAX = "ava", BLAST = "bls", SONIC = "son", BERACHAIN = "ber" } export declare const getChainParam: (chain?: ChainId) => NetworkNames | null; export declare const getLpType: (protocol?: Protocols) => "ichi" | "solidly" | "univ2" | "curve" | null; export {};