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