import { AgainstResult } from '../against/result'; import { AgainstSide } from '../against/side'; import { AgainstGame } from '../game/against'; import { GamePhase } from '../game/phase'; import { Score } from '../score'; import { AgainstScoreHelper } from './againstHelper'; export declare class AgainstScore extends Score { protected game: AgainstGame; static readonly SCORED = 1; static readonly RECEIVED = 2; protected helper: AgainstScoreHelper; constructor(game: AgainstGame, home: number, away: number, phase: GamePhase, number?: number); getGame(): AgainstGame; getHome(): number; getAway(): number; getResult(side: AgainstSide): AgainstResult; }