import TerminalInterface from '../interfaces/TerminalInterface';
import { CommandService } from './CommandService';
export default class GameService {
    private command;
    private ui;
    private statusMessage?;
    private killed;
    constructor(command: CommandService, ui: TerminalInterface);
    setStatusMessage(message: string): void;
    play(introductionSentences?: string[]): Promise<void>;
    kill(): void;
}
