import type { KnownAssetBalanceInfo } from '../providers/GeneralWalletProvider';
export type WalletAssets = Record<string, KnownAssetBalanceInfo>;
/**
 * Returns wallet assets that are above the {@link ASSETS_LOW_VALUE_THRESHOLD} threshold with their total USD value.
 */
export declare const useWalletAssets: ({ enableRefetchInterval, refetchOnMount, }?: {
    enableRefetchInterval?: boolean | undefined;
    refetchOnMount?: boolean | undefined;
}) => {
    walletAssets: WalletAssets | undefined;
    totalWalletAssetsUsd: number;
    isLoading: boolean;
    isFetching: boolean;
};
