import { EnumActionType } from './EnumActionType';
import { Serializable } from '../Serializable';
export declare abstract class AbstractAction extends Serializable {
    private type;
    private playerName;
    private message;
    constructor(type: EnumActionType, playerName: string, message: string);
    getType(): EnumActionType;
    getMessage(): string;
    getPlayerName(): string;
}
