import { GameSetupCreator, RulesCreator } from '@gamepark/rules-api'; import { PropsWithChildren } from 'react'; import { GameReducerContext } from '../../Store/gameReducer'; import { TutorialDescription } from '../../Tutorial'; import { GameAI } from '../../Types'; export type LocalGameProviderProps = { game: string; storage?: string; ServerRules?: RulesCreator; GameSetup: GameSetupCreator; optionsSpec?: any; tutorial?: TutorialDescription; ai?: GameAI; } & GameReducerContext; export declare function LocalGameProvider({ children, ...context }: PropsWithChildren>): import("react").JSX.Element;