import type { MergeStrategyType } from './merge-strategy-type.js';
/**
 * The MergeStrategyScoreReuse merges the given PerFilterSearchResult instances according to the scores returned by the downstream retrieval process. It is important that the scores are comparable, meaning they should come from the same embedding model or reranker model.
 */
export type MergeStrategyScoreReuse = {
    type?: MergeStrategyType;
} & Record<string, any>;
//# sourceMappingURL=merge-strategy-score-reuse.d.ts.map