/**
 * News Scout Pipeline — Phase 3: Score & Rank
 *
 * Composite scoring: engagementScore + recencyBoost + credibility weight
 * Cross-source confirmation: stories from 2+ unique sources get boosted
 * Celebrity extraction via dictionary + heuristic
 * Auto-flags: top 3 → is_featured, score > 5000 → is_breaking
 */
import { ScoutCandidate } from './types';
export declare function runTrendingScorer(candidates: ScoutCandidate[]): Promise<ScoutCandidate[]>;
//# sourceMappingURL=trending-scorer.d.ts.map