/**
 * RIE Strategy: Soccer (EPL, La Liga, Bundesliga, Serie A, Ligue 1, Champions League)
 *
 * PIFF props + Corner Scout + DVP + Grok + RAG.
 * Poisson goal models and corner analysis from RAG knowledge base.
 */
import { BaseStrategy } from './base.strategy';
import { StrategyProfile } from '../types';
export declare class SoccerStrategy extends BaseStrategy {
    league: string;
    getProfile(): StrategyProfile;
}
/**
 * Factory: create the right soccer strategy for any soccer league.
 * They all use the same weights but track their actual league name.
 */
export declare function createSoccerStrategy(league: string): SoccerStrategy;
export declare function isSoccerLeague(league: string): boolean;
//# sourceMappingURL=soccer.strategy.d.ts.map