export default class MyGraph {
    private myRavenloftGraph;
    constructor();
    getRooms(): string[];
    getShortestPath(start: string, end: string): string[];
    activateSecretDoor(secretDoorId: string): void;
    getSecretDoors(): string[];
    getMapColorOfRoom(room: string): any;
}
