import { Map } from 'immutable';
import { AllCardsService } from '../../services/all-cards.service';
import { Entity } from '../game/entity';
import { Action } from './action';
export declare class EndGameAction extends Action {
    readonly winStatus: readonly [number, number][];
    readonly entityId: number;
    readonly opponentId: number;
    constructor(allCards: AllCardsService);
    static create(newAction: any, allCards: AllCardsService): EndGameAction;
    update(entities: Map<number, Entity>): EndGameAction;
    enrichWithText(allEntitiesSoFar: Map<number, Entity>): EndGameAction;
    protected getInstance(): Action;
}
