import BigNumber from 'bignumber.js'; export declare function getTokenAmountsFromLiquidity(liquidity: BigNumber, tickCurrentIndex: number, tickLowerIndex: number, tickUpperIndex: number, feeGrowthOutsideLower: FeeGrowthOutside, feeGrowthOutsideUpper: FeeGrowthOutside, feeGrowthGlobal0X128: bigint, feeGrowthGlobal1X128: bigint): readonly [bigint, bigint]; export declare function getTokensOwed(feeGrowthInside0LastX128: bigint, feeGrowthInside1LastX128: bigint, liquidity: bigint, feeGrowthInside0X128: bigint, feeGrowthInside1X128: bigint): readonly [bigint, bigint]; interface FeeGrowthOutside { feeGrowthOutside0X128: bigint; feeGrowthOutside1X128: bigint; } export {};