import { type TokenBalanceData } from "@leapwallet/embedded-wallet-sdk-core"; import { SWRConfiguration } from "swr"; import { ChainRecord } from "../contexts/account"; import { aggregatedTokenData } from "../components/aggregated-modal/pages/home/token-list"; export declare function balanceSorter(a: TokenBalanceData, b: TokenBalanceData): number; export declare const useRichBalance: (address: string, chainId: string, restUrl?: string, options?: SWRConfiguration) => import("swr/_internal").SWRResponse>> | undefined>; export declare const useAggregatedRichBalance: (aggregatedChainData: ChainRecord, key?: string) => import("swr/_internal").SWRResponse; export declare const useEvmRichBalance: (chains: ChainRecord, key?: string) => import("swr/_internal").SWRResponse; export declare const useSkipBalances: (chains: ChainRecord) => import("swr/_internal").SWRResponse>> | undefined>;