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