/** * A StairNode represents the node ID of Stairs. */ export declare class StairNode { readonly name: StairName; readonly floor: number; readonly _type = "StairNode"; constructor(name: StairName, floor: number); } /** * @param name The name of the staircase * @param floor The floor that this node is on * @returns A StairNode with the given name on the given floor */ export declare function onFloor(name: StairName, floor: number): StairNode;