UNPKG

@lifi/widget

Version:

LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.

15 lines (14 loc) 496 B
/// <reference types="react" /> import type { LifiStep, TokenAmount } from '@lifi/sdk'; import type { BoxProps } from '@mui/material'; interface TokenProps { token?: TokenAmount; connected?: boolean; step?: LifiStep; disableDescription?: boolean; isLoading?: boolean; } export declare const Token: React.FC<TokenProps & BoxProps>; export declare const TokenFallback: React.FC<TokenProps & BoxProps>; export declare const TokenBase: React.FC<TokenProps & BoxProps>; export {};