import React from 'react'; import { SwapType } from '../../types'; import { Token } from '../../utils/token'; import BigNumber from 'bignumber.js'; export interface SwapInputProps { type: SwapType; token?: Token; isActivate?: boolean; loading: boolean; amount?: string; tokenUsdPrice?: BigNumber; disabled?: boolean; onChangeToken: (addr: string) => void; onChangeAmount: (type: SwapType, amount: string) => void; } export declare const SwapInput: React.MemoExoticComponent<({ type, amount, tokenUsdPrice, token, isActivate, onChangeToken, onChangeAmount, loading, disabled, }: SwapInputProps) => import("react/jsx-runtime").JSX.Element>; //# sourceMappingURL=SwapInput.d.ts.map