import BN from 'bn.js'; import { BigintIsh } from '../../core'; export interface TickConstructorArgs { index: number; liquidityGross: BigintIsh; liquidityNet: BigintIsh; feeGrowthOutsideX: BigintIsh; feeGrowthOutsideY: BigintIsh; rewardGrowthsOutside: BigintIsh[]; } export declare class Tick { readonly index: number; readonly liquidityGross: BN; readonly liquidityNet: BN; readonly feeGrowthOutsideX: BN; readonly feeGrowthOutsideY: BN; readonly rewardGrowthsOutside: BN[]; constructor({ index, liquidityGross, liquidityNet, feeGrowthOutsideX, feeGrowthOutsideY, rewardGrowthsOutside, }: TickConstructorArgs); }