import "client-only";
import React from "react";
import { Game } from "../../nlcore/game";
export default function GameProviders({ children, game }: Readonly<{
    children?: React.ReactNode;
    game?: Game;
}>): React.JSX.Element;
