import { Map } from 'immutable';
import { Action } from '../../models/action/action';
import { Entity } from '../../models/game/entity';
import { HistoryItem } from '../../models/history/history-item';
import { TagChangeHistoryItem } from '../../models/history/tag-change-history-item';
import { AllCardsService } from '../all-cards.service';
import { Parser } from './parser';
export declare class StartTurnParser implements Parser {
    private readonly allCards;
    constructor(allCards: AllCardsService);
    applies(item: HistoryItem): boolean;
    parse(item: TagChangeHistoryItem, currentTurn: number, entitiesBeforeAction: Map<number, Entity>, history: readonly HistoryItem[]): Action[];
    reduce(actions: readonly Action[]): readonly Action[];
}
