import { ethers } from 'ethers';
export type AddLiquidityParams = {
    tokenA: string;
    tokenB: string;
    amountA: string;
    amountB: string;
    slippage: number;
    routerAddress: string;
};
export declare const addLiquidity: (params: AddLiquidityParams, wallet: ethers.Wallet) => Promise<any>;
