import { Dex, Trade } from '../../hooks/useSwap'; import { TokenInfo } from '../../constants'; import { providers } from 'ethers'; declare function Confirmation({ trade, tokenInInfo, amountIn, tokenOutInfo, amountOut, rate, slippage, priceImpact, excludedDexes, isWrap, isUnwrap, isSwap, chainId, provider, account, integration, apiKey, onClose, onTxSubmit, onError, }: { trade: Trade; tokenInInfo: TokenInfo; amountIn: string; tokenOutInfo: TokenInfo; amountOut: string; rate: number; slippage: number; priceImpact: number; excludedDexes: Dex[]; isWrap: boolean; isUnwrap: boolean; isSwap: boolean; chainId: number; provider: providers.Web3Provider | providers.JsonRpcProvider; account: string; integration: { id: string; feeAmount?: string; feeReceiver?: string; }; apiKey?: string; onClose: () => void; onTxSubmit?: (txHash: string, data: any) => void; onError?: (e: any) => void; }): import("react/jsx-runtime").JSX.Element; export default Confirmation; //# sourceMappingURL=index.d.ts.map