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