import { PositionData, TickData, WhirlpoolData } from "@orca-so/whirlpool-client-sdk";
import { CollectRewardsQuote } from "../position/public";
export declare type InternalGetCollectRewardsQuoteParam = {
    whirlpool: WhirlpoolData;
    position: PositionData;
    tickLower: TickData;
    tickUpper: TickData;
};
export declare function getCollectRewardsQuoteInternal(param: InternalGetCollectRewardsQuoteParam): CollectRewardsQuote;
