import { HttpService } from '@nestjs/axios'; import { AxiosResponse } from 'axios'; import { Observable } from 'rxjs'; import { Configuration } from '../configuration'; import { DefaultRotowireNflApiServiceInterface } from './default.serviceInterface'; export declare class DefaultRotowireNflApiService implements DefaultRotowireNflApiServiceInterface { protected httpClient: HttpService; protected basePath: string; defaultHeaders: Record; configuration: Configuration; constructor(httpClient: HttpService, configuration: Configuration); private canConsumeForm; dailyProjections(format: string, date?: string): Observable>; injuries(format: string): Observable>; newsInjuries(format: string, date?: string, hours?: number): Observable>; weeklyProjections(format: string, position?: string, season?: number, team?: string, week?: number): Observable>; }