import { Observable } from 'rxjs';
import { Configuration } from '../configuration';
export interface DefaultSportradarNbaApiServiceInterface {
    defaultHeaders: {};
    configuration: Configuration;
    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<{}>;
    dailyTransfers(locale: string, year: number, month: number, day: number, format: string, extraHttpRequestParams?: any): Observable<{}>;
    draftSummary(locale: string, year: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    freeAgents(locale: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    gameBoxscore(locale: string, game_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    gameSummary(locale: string, game_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    injuries(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<{}>;
    playByPlay(locale: string, game_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    playerProfile(locale: string, game_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    prospects(locale: string, year: number, format: string, extraHttpRequestParams?: any): Observable<{}>;
    rankings(locale: string, year: number, season_year: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    schedule(locale: string, year: number, season_type: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    seasonalStatistics(locale: string, year: number, season_type: string, team_id: string, 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<{}>;
    splitsGame(locale: string, year: number, season_type: string, team_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    splitsHierarchy(locale: string, year: number, season_type: string, team_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    splitsIngame(locale: string, year: number, season_type: string, team_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    splitsSchedule(locale: string, year: number, season_type: string, team_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    standings(locale: string, year: number, season_type: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    teamDraftSummary(locale: string, year: number, team_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    teamProfileRosters(locale: string, team_id: string, format: string, extraHttpRequestParams?: any): Observable<{}>;
    topProspects(locale: string, year: number, format: string, extraHttpRequestParams?: any): Observable<{}>;
    trades(locale: string, year: number, format: string, extraHttpRequestParams?: any): Observable<{}>;
}
