import { ProductRecord } from '../types'; /** * Returns the reordered list of recommendations based on average indices. * * @param hits - recommendations * @param maxRecommendations - max number of recommendations * @param nrOfObjs - total number of products for which we are retrieving recommendations (objectsIDs.length) */ type MapToRecommendations = { hits: Array>>; queryIDs: Array; maxRecommendations?: number; nrOfObjs: number; }; export declare function mapToRecommendations({ hits, maxRecommendations, nrOfObjs, queryIDs, }: MapToRecommendations): Array>; export {};