UNPKG

@brave/swap-interface

Version:

Brave Swap - an open-source swap interface by Brave, focussed on usability and multi-chain support.

10 lines (9 loc) 322 B
import { BlockchainToken, QuoteOption } from '../../constants/types'; interface Props { selectedQuoteOption: QuoteOption | undefined; fromToken: BlockchainToken | undefined; toToken: BlockchainToken | undefined; toAmount: string; } export declare const QuoteInfo: (props: Props) => JSX.Element; export {};