import type { LiFiStep, TokenAmount } from '@lifi/sdk'; import type { BoxProps } from '@mui/material'; import type { FC } from 'react'; interface TokenProps { token: TokenAmount; step?: LiFiStep; stepVisible?: boolean; disableDescription?: boolean; isLoading?: boolean; } export declare const Token: FC; export declare const TokenFallback: FC; export declare const TokenBase: FC; export declare const TokenSkeleton: FC & BoxProps>; export {};