import { ChainData, FungibleTokenData } from "../types"; export declare const STATIC_CHAINS_MAINNET: ChainData[]; export declare const STATIC_NATIVE_TOKENS_MAINNET: Record; export declare const STATIC_CHAINS_TESTNET: ChainData[]; export declare const STATIC_NATIVE_TOKENS_TESTNET: Record; export declare class ZerionService { private readonly apiKey; private readonly env; constructor(apiKey: string, testnet: boolean); fetchFromZerion(endpoint: string): Promise; }