import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext } from '../http/http'; import { Draft } from '../models/Draft'; import { Pick } from '../models/Pick'; import { TradedPick } from '../models/TradedPick'; export declare class DraftsApiRequestFactory extends BaseAPIRequestFactory { draftDraftIdGet(draftId: string, options?: Configuration): Promise; draftDraftIdPicksGet(draftId: string, options?: Configuration): Promise; draftDraftIdTradedPicksGet(draftId: string, options?: Configuration): Promise; leagueLeagueIdDraftsGet(leagueId: string, options?: Configuration): Promise; userUserIdDraftsSportSeasonGet(userId: string, sport: string, season: number, options?: Configuration): Promise; } export declare class DraftsApiResponseProcessor { draftDraftIdGet(response: ResponseContext): Promise>; draftDraftIdPicksGet(response: ResponseContext): Promise>; draftDraftIdTradedPicksGet(response: ResponseContext): Promise>; leagueLeagueIdDraftsGet(response: ResponseContext): Promise>; userUserIdDraftsSportSeasonGet(response: ResponseContext): Promise>; }