import { Type } from '../packages/currency'; import { default as React } from 'react'; interface SwapParamsType { amountIn: string; amountOut: string; tokenIn?: Type; tokenOut?: Type; setTokenIn: any; setTokenOut: any; setAmountIn: any; setAmountOut: any; switchToken: any; } export declare const SwapParamsContext: React.Context; export default function useSwapParams(): SwapParamsType; export declare const SwapParamsProvider: React.FC<{ children: React.ReactNode; }>; export {};