import { GameResponse } from './game/types';
export { MatrixGame } from './react/MatrixGame';
export declare class TheMatrix {
    private engine;
    constructor();
    processCommand(input: string): GameResponse;
    getScore(): number;
    isGameOver(): boolean;
}
export declare function createGame(): TheMatrix;
