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