/**
 * News Scout Pipeline — Phase 1c: Reddit JSON API
 *
 * Reddit public JSON API provides hot posts with real engagement metrics.
 * 8 sport subreddits, only external link posts (skip self-posts and reddit media).
 * 7s delay between subreddits (~8.5 req/min, under 10/min limit).
 * 24-hour max age filter, engagement = upvotes + (comments * 0.5).
 */
import { ScoutCandidate } from './types';
export declare function runRedditScout(): Promise<ScoutCandidate[]>;
//# sourceMappingURL=reddit-scout.d.ts.map