declare type AllianceTeam = { team: { id: number; name: string; code: string | null; }; sitting: boolean; }; declare type Alliance = { color: string; score: number; teams: AllianceTeam[]; }; export declare class Match { id: number; event: { id: number; name: string; code: string; }; division: { id: number; name: string; code: null; }; round: number; instance: number; matchnum: number; scheduled: string; started: string; field: string; scored: boolean; name: string; alliances: Alliance[]; constructor(matchData?: Object); } export {};