/** Strategy for merging results from multiple sources. */
export declare const MergingStrategy: {
    readonly RankFusion: "rank_fusion";
    readonly TopKPerSource: "top_k_per_source";
    readonly WeightedInterleave: "weighted_interleave";
};
export type MergingStrategy = (typeof MergingStrategy)[keyof typeof MergingStrategy];
