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