import JSBI from 'jsbi'; /** * Returns the maximum amount of liquidity received for a given amount of token0, token1, and the prices at the tick boundaries. * @param sqrtRatioCurrentX96 The current sqrt price * @param sqrtRatioAX96 The sqrt price at the lower tick boundary * @param sqrtRatioBX96 The sqrt price at the upper tick boundary * @param amount0 The amount of token0 being sent in * @param amount1 The amount of token1 being sent in * @param useFullPrecision If true, liquidity will be maximized according to the current tick * @returns The maximum amount of liquidity received */ export declare function maxLiquidityForAmounts(sqrtRatioCurrentX96: JSBI, sqrtRatioAX96: JSBI, sqrtRatioBX96: JSBI, amount0: JSBI, amount1: JSBI, useFullPrecision: boolean): JSBI; //# sourceMappingURL=maxLiquidityForAmounts.d.ts.map