import TerminalInterface from './interfaces/TerminalInterface';
import { CommandService } from './services/CommandService';
export default class InFlightEntertainment {
    private static activeGameCount;
    private static game?;
    static setup(options: {
        command: CommandService;
        ui: TerminalInterface;
    }): void;
    static start(intro?: string[]): void;
    static writeStatus(message: string): void;
    static stop(): void;
}
