import type { Team_Event_Status } from '../models/Team_Event_Status'; export declare class ListService { /** * Gets a key-value list of the event statuses for events this team has competed at in the given year. * @param teamKey TBA Team Key, eg `frc254` * @param year Competition Year (or Season). Must be 4 digits. * @param ifNoneMatch Value of the `ETag` header in the most recently cached response by the client. * @returns Team_Event_Status Successful response * @throws ApiError */ static getTeamEventsStatusesByYear(teamKey: string, year: number, ifNoneMatch?: string): Promise>; }