import type { Program } from "@coral-xyz/anchor"; import type { Instruction } from "@orca-so/common-sdk"; import { type PublicKey } from "@solana/web3.js"; import type { Whirlpool } from "../artifacts/whirlpool"; export type ResetPositionRangeParams = { funder: PublicKey; positionAuthority: PublicKey; whirlpool: PublicKey; position: PublicKey; positionTokenAccount: PublicKey; tickLowerIndex: number; tickUpperIndex: number; }; export declare function resetPositionRangeIx(program: Program, params: ResetPositionRangeParams): Instruction;