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