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