import React from "react"; interface ConsentProps { onConsent: () => void; } interface PlayerIDProps { onPlayerID: (playerID: string) => void; } interface GameFrameProps { children: React.ReactNode; noGames?: React.ElementType; consent?: React.ElementType; playerIDForm?: React.ElementType; lobby?: React.ElementType; introSteps: React.ElementType[]; exitSteps: React.ElementType[]; } export declare function GameFrame({ children, noGames: NoGames, lobby, playerIDForm: PlayerIDForm, consent: ConsentComp, introSteps, exitSteps, }: GameFrameProps): JSX.Element; interface PostIntroProps { children: React.ReactNode; lobby: React.ElementType; exitSteps: React.ElementType[]; } export declare function PostIntro({ children, lobby: Lobby, exitSteps, }: PostIntroProps): JSX.Element; export declare function Finished(): JSX.Element; export declare function DefaultNoGames(): JSX.Element; export {};