import type { Room } from "../room/base.js"; import type { State } from "../state/state.js"; import { Command } from "../command.js"; export declare class NextRound extends Command { execute(state: State, room: Room): Promise; undo(state: State, room: Room): Promise; }