/**
 * @notice Output for the get position query
 * @dev Contains all the position data returned by the contract
 */
export interface IGetPositionOutput {
    nonce: bigint;
    operator: string;
    token0: string;
    token1: string;
    fee: number;
    tickLower: number;
    tickUpper: number;
    liquidity: bigint;
    feeGrowthInside0LastX128: bigint;
    feeGrowthInside1LastX128: bigint;
    tokensOwed0: bigint;
    tokensOwed1: bigint;
}
