import BigNumber from 'bignumber.js'; import React from 'react'; import { SwapType, AggregatorQuote } from '../../types'; export interface SwapDetailProps { swapType: SwapType; quote: AggregatorQuote; amount: BigNumber; loading: boolean; } export declare const SwapDetail: React.MemoExoticComponent<({ swapType, quote, loading, amount }: SwapDetailProps) => JSX.Element>; //# sourceMappingURL=SwapDetail.d.ts.map