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