import type { FunkitCheckoutConfig } from '../providers/FunkitCheckoutContext';
export type { AssetHoldingsItem, AssetHoldingsMap, KnownAssetHoldingsItem, } from '~/domains/wallet';
export declare const ASSETS_LOW_VALUE_THRESHOLD = 0.1;
export declare const getNormalizedTokenBalance: (tokenBalance: bigint | number | string, decimals: number) => number;
/**
 *
 * @param {FunkitCheckoutConfig} checkoutConfig
 * @param mockedChains optional array of additional chains we want to replace with FALLBACK_CHAIN_ID
 * @returns targetChain either from the provided config or arbitrum chainId for dydxChain since that's a non evm chain processed with evm tech
 */
export declare const getMockedTargetChainId: ({ targetChain }: FunkitCheckoutConfig, mockedChains?: string[]) => string;
