import { ChainId, Token } from '@ape.swap/apeswap-lists'; export interface SortedZapList { token: 'NATIVE' | Token; price: number; balance?: string; usdValue: number; } declare const useSortedZapList: (chainId?: ChainId, principalToken?: Token) => SortedZapList[]; export default useSortedZapList;