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, ...modifiers: KlevuFetchModifer[]): KlevuFetchFunctionReturnValue; export {};