export declare abstract class TickMath { private constructor(); static MIN_TICK: bigint; static MAX_TICK: bigint; static MIN_SQRT_PRICE: bigint; static MAX_SQRT_PRICE: bigint; static maxUsableTick(tickSpacing: bigint): bigint; static minUsableTick(tickSpacing: bigint): bigint; static getSqrtPriceAtTick(tick: bigint): bigint; static getTickAtSqrtPrice(sqrtPriceX96: bigint): bigint; }