import { Theme } from '@emotion/react'; import { LocalGameProviderProps } from '@gamepark/react-client'; import { PropsWithChildren } from 'react'; import { DeepPartial } from '../../utilities'; import { GameContext } from './GameContext'; export type GameProviderProps = LocalGameProviderProps & GameContext & { theme?: DeepPartial; }; export declare const GameProvider: ({ materialI18n, theme, children, ...props }: PropsWithChildren>) => import("@emotion/react/jsx-runtime").JSX.Element | null;