/** * Uniswap V3 TickMath + LiquidityAmounts, ported from Solidity. * Pure math — no external dependencies. */ export declare const FEE_TICK_SPACING: Record; export declare function getSqrtRatioAtTick(tick: number): bigint; export declare function maxLiquidityForAmounts(sqrtPrice: bigint, sqrtA: bigint, sqrtB: bigint, amount0: bigint, amount1: bigint): bigint; export declare function getAmountsForLiquidity(sqrtPrice: bigint, sqrtA: bigint, sqrtB: bigint, liquidity: bigint): { amount0: bigint; amount1: bigint; }; export declare function nearestUsableTick(tick: number, tickSpacing: number): number; //# sourceMappingURL=v3-math.d.ts.map