import { ChainType } from '@bnb-chain/canonical-bridge-sdk'; export declare function TokenPricesProvider(): null; export declare function useTokenPrice(): { getTokenPrice: ({ chainId, chainType, tokenAddress, tokenSymbol, }?: { chainId?: number; chainType?: ChainType; tokenAddress?: string; tokenSymbol?: string; }) => number | undefined; fetchTokenPrice: ({ chainId, chainType, tokenAddress, tokenSymbol, }: { chainId: number; chainType: ChainType; tokenAddress: string; tokenSymbol: string; }) => Promise<{ data: number; }>; fetchApiTokenPrices: () => Promise<{ cmcPrices: Record; llamaPrices: Record; }>; };