import { PoolState } from './types'; /** * Calculates the total current amount of token0 and token1 in the entire pool * by "walking" the initialized tick list. */ export declare function calculateTotalPoolLiquidity(poolState: PoolState): { totalAmount0: bigint; totalAmount1: bigint; };