import { ethers } from 'ethers';
export type SwapParams = {
    tokenIn: string;
    tokenOut: string;
    amountIn: string;
    slippage: number;
    routerAddress: string;
};
export declare const swap: (params: SwapParams, wallet: ethers.Wallet) => Promise<any>;
