import { PropsWithChildren } from 'react'; import { GameReducerContext } from '../../Store/gameReducer'; type RemoveGameProviderProps = { gameId: string; } & GameReducerContext; export declare function RemoteGameProvider({ gameId, children, ...context }: PropsWithChildren>): import("react").JSX.Element; export {};