import { KlevuFetchModifer } from "../../modifiers/index.js";
import { KlevuFetchFunctionReturnValue } from "../index.js";
type Options = {
    limit?: number;
};
/**
 * Bought together recommendation on checkout page
 *
 * @category RecommendationQuery
 * @param options
 * @param modifiers
 * @returns
 */
export declare function boughtTogether(productIdsInCart: string[], options: Partial<Options>, ...modifiers: KlevuFetchModifer[]): KlevuFetchFunctionReturnValue;
export {};
