import React from "react"; import { NonogramActions } from "../utils/types"; import { GameBoard } from "./GameBoard"; import { HintNumbers } from "./HintNumbers"; export interface GameControllerProps { onRefresh: (nonogramActions: NonogramActions) => void; } export declare const MemoBoard: React.MemoExoticComponent; export declare const MemoHintNumbers: React.MemoExoticComponent; export declare function GameController({ onRefresh }: GameControllerProps): JSX.Element;