import { AbstractAction } from './AbstractAction';
export declare class ArriveOnBoxAction extends AbstractAction {
    private fromBoxIndex;
    private toBoxIndex;
    constructor(playerName: string, message: string, fromBoxIndex: number, toBoxIndex: number);
    getFromBoxIndex(): number;
    getToBoxIndex(): number;
}
