import { BN } from '@coral-xyz/anchor';
import { Address } from '@solana/kit';
import { Percentage, RemoveLiquidityQuote } from '@orca-so/whirlpool-sdk';
export type InternalRemoveLiquidityQuoteParam = {
    positionAddress: Address;
    tickCurrentIndex: number;
    sqrtPrice: BN;
    tickLowerIndex: number;
    tickUpperIndex: number;
    liquidity: BN;
    slippageTolerance: Percentage;
};
export declare function getRemoveLiquidityQuote(param: InternalRemoveLiquidityQuoteParam, roundUp?: boolean): RemoveLiquidityQuote;
//# sourceMappingURL=whirlpools.d.ts.map