import { Serializable } from '../Serializable';
export declare class DiceThrow extends Serializable {
    private playerName;
    private dice1;
    private dice2;
    constructor(playerName: string, dice1: number, dice2: number);
    getPlayerName(): string;
    getDice1(): number;
    getDice2(): number;
}
