import { DeepReadonly } from 'ts-essentials'; import { PoolState } from '../../uniswap-v3/types'; export declare class TickBitMap { static position(tick: bigint): [bigint, bigint]; static flipTick(state: PoolState, tick: bigint, tickSpacing: bigint): void; static nextInitializedTickWithinOneWord(state: DeepReadonly, tick: bigint, tickSpacing: bigint, lte: boolean, isPriceQuery: boolean): [bigint, boolean]; static _putZeroIfUndefined(state: PoolState, tickBitmapValue: bigint | undefined, wordPos: bigint, isPriceQuery?: boolean): bigint; }