type ForecastNarrativeContext = {
    homeTeam?: string | null;
    awayTeam?: string | null;
    homeShort?: string | null;
    awayShort?: string | null;
    league?: string | null;
    odds?: {
        spread?: {
            home?: {
                line?: number | null;
            } | null;
            away?: {
                line?: number | null;
            } | null;
        } | null;
    } | null;
};
export declare function reconcilePublicForecastProjection(forecastData: any, context?: ForecastNarrativeContext): any;
export declare function normalizePublicForecastNarrative(forecastData: any, context?: ForecastNarrativeContext): any;
export {};
//# sourceMappingURL=public-forecast-normalizer.d.ts.map