import type { ReactNode } from 'react'; import type { GameserverConnection } from '../../types'; export default function Game({ gameConnection, loading, isSpectator, }: { gameConnection?: GameserverConnection | Record | null; loading?: ReactNode; isSpectator?: boolean; }): string | number | boolean | Iterable | import("react/jsx-runtime").JSX.Element | null | undefined; //# sourceMappingURL=game.d.ts.map