/** @jsxImportSource @emotion/react */ import { FC } from 'react'; import { GameOption } from './DevToolsHub'; type GamePanelProps = { exec: (action: () => void, msg: string) => void; g: any; gameOptions?: GameOption[]; }; export declare const GamePanel: FC; export {};