import { CommandContext } from '../../CommandContext';
import { GameObject } from '../GameObject';
import { Room } from '../Room';
import { RoomBase } from '../RoomBase';
export declare class Entryway extends RoomBase {
    objects: GameObject[];
    south: Room;
    west: Room;
    up: Room;
    constructor();
    tryGo(direction: string, context: CommandContext): boolean;
    describe(context: CommandContext): void;
}
