export * from './types';
import type { FungibleToken, NonFungibleToken } from './types';
export declare const getTokenList: (chainId: number) => {
    ERC20: {
        chainId: number;
        type: string;
        address: string;
        name: string;
        symbol: string;
        decimals: number;
        logoURI: string;
    }[];
    ERC721: {
        chainId: number;
        type: string;
        address: string;
        name: string;
        symbol: string;
        logoURI: string;
    }[];
} | undefined;
export declare const tokens: () => (FungibleToken | NonFungibleToken)[];
