import { FC, PropsWithChildren } from 'react'; export type GameOption = { key: string; label: string; type: 'boolean'; }; type DevToolsHubProps = PropsWithChildren<{ fabBottom?: string; gameOptions?: GameOption[]; }>; export declare const DevToolsHub: FC; export {};