import { ethers } from "../.."; import { Pool } from "../../entities"; export declare const kyberBaseUrl = "https://aggregator-api.kyberswap.com"; export declare function getKyberSwapTxData(pool: Pool, tokenIn: string, tokenOut: string, amountIn: ethers.BigNumber | string, slippage: number, sender?: string, receiver?: string): Promise<{ swapTxData: string; minAmountOut: string; }>;