import { EnumActionType } from './EnumActionType';
import { AbstractAction } from './AbstractAction';
export declare abstract class AbstractPropertyAction extends AbstractAction {
    private propertyIndex;
    constructor(type: EnumActionType, playerName: string, message: string, propertyIndex: number);
    getPropertyIndex(): number;
}
