import { PoolState, TickInfo } from '../types'; import { NumberAsString } from '@paraswap/core'; export declare class Tick { static update(state: Pick, tick: bigint, liquidityDelta: bigint, upper: boolean, maxLiquidity: bigint): boolean; static clear(state: Pick, tick: bigint): void; static cross(ticks: Record, tick: bigint): bigint; }