import { TokenItemType } from "src/format-types"; export type TokenIcon = Pick; export type ChainIcon = { Icon: any; IconLight?: any; chainId: string; }; export declare const tokensIcon: TokenIcon[]; export declare const chainIcons: ChainIcon[]; export declare const tokenIconByCoingeckoId: Record; export declare const chainIconByChainId: Record; export declare const mapListWithIcon: (list: any[], listIcon: ChainIcon[] | TokenIcon[], key: "chainId" | "coinGeckoId") => any[];