import JSBI from 'jsbi'; /** * Provides functions for computing square root prices from ticks and vice versa */ export declare abstract class TickMath { /** * Cannot be constructed. */ private constructor(); /** * Returns the sqrt ratio as a Q64.96 for the given tick * @param tick the tick for which to compute the sqrt ratio */ static getSqrtRatioAtTick(tick: number): JSBI; /** * Returns the tick corresponding to a given sqrt ratio * @param sqrtRatioX96 the sqrt ratio as a Q64.96 */ static getTickAtSqrtRatio(sqrtRatioX96: JSBI): number; } //# sourceMappingURL=tickMath.d.ts.map