import { Observable } from 'rxjs';
import { Configuration } from '../configuration';
export interface DefaultSportradarMlbApiServiceInterface {
    defaultHeaders: {};
    configuration: Configuration;
    dailyBoxscore(locale: string, year: number, month: number, day: number, format: string, extraHttpRequestParams?: any): Observable<{}>;
    dailyChangeLog(locale: string, year: number, month: number, day: number, format: string, extraHttpRequestParams?: any): Observable<{}>;
    dailySchedule(locale: string, year: number, month: number, day: number, format: string, extraHttpRequestParams?: any): Observable<{}>;
    dailySummary(locale: string, year: number, month: number, day: number, format: string, extraHttpRequestParams?: any): Observable<{}>;
    dailyTransactions(locale: string, year: number, month: number, day: number, format: string, extraHttpRequestParams?: any): Observable<{}>;
    gameBoxscore(locale: string, game_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    gameExtendedSummary(locale: string, game_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    gameSummary(locale: string, game_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    glossary(locale: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    injuries(locale: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    leagueDepthChart(locale: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    leagueHierarchy(locale: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    leagueLeaders(locale: string, year: number, season_type: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    leagueSchedule(locale: string, year: number, season_type: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    playByPlay(locale: string, game_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    playerProfile(locale: string, player_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    rankings(locale: string, year: number, season_type: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    seasonalPitchMetrics(locale: string, player_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    seasonalSplits(locale: string, year: number, season_type: string, team_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    seasonalStatistics(locale: string, year: number, season_type: string, team_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    seasonalTransactions(locale: string, year: number, format: string, extraHttpRequestParams?: any): Observable<{}>;
    seasons(locale: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    seriesSchedule(locale: string, year: number, season_type: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    seriesStatistics(locale: string, series_id: string, team_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    seriesSummary(locale: string, series_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    standings(locale: string, year: number, season_type: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    statcastLeaders(locale: string, year: number, season_type: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    teamDepthCharts(locale: string, team_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    teamProfile(locale: string, team_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    venues(locale: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
}
