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