import { HttpService } from '@nestjs/axios'; import { AxiosResponse } from 'axios'; import { Observable } from 'rxjs'; import { Configuration } from '../configuration'; import { DefaultRotowireMlbApiServiceInterface } from './default.serviceInterface'; export declare class DefaultRotowireMlbApiService implements DefaultRotowireMlbApiServiceInterface { protected httpClient: HttpService; protected basePath: string; defaultHeaders: Record; configuration: Configuration; constructor(httpClient: HttpService, configuration: Configuration); private canConsumeForm; dailyProjections(format: string, date?: string): Observable>; expectedLineups(format: string, date?: string): Observable>; injuries(format: string): Observable>; newsInjuries(format: string, date?: string): Observable>; projectedStarters(format: string, date?: string, spring_training?: number): Observable>; }