import { FrequentlyBoughtTogetherQuery } from '@algolia/recommend'; import { RecommendationsProps } from './getRecommendations'; import { ProductRecord } from './types'; export type GetFrequentlyBoughtTogetherProps = RecommendationsProps & Omit; export declare function getFrequentlyBoughtTogether({ objectIDs, recommendClient, transformItems, indexName, maxRecommendations, queryParameters, threshold, }: GetFrequentlyBoughtTogetherProps): Promise<{ recommendations: ProductRecord[]; }>;