import { Match } from "./Match"; import { MatchesObject } from "./types/interfaces"; declare abstract class Team { readonly id: number; readonly name: string; readonly shield: string; protected readonly matchesObject: MatchesObject; constructor(name: string, shield: string, id: number); get matches(): MatchType[]; get matchesPlayedArray(): MatchType[]; get matchesPlayed(): number; goalsInMatches(matches: MatchType[]): number; addMatch(match: MatchType): void; } export default Team;