import { XComponent } from '../XComponent'; import { XLobbyGame } from './XLobbyGame'; export declare type XLobbyPageProps = { onGameSearch: (gameName: string, playerCount: number) => void; searchStatus?: { name: string; isSearching: boolean; }; gameName: string; }; export declare class XLobbyPage extends XComponent { games: XLobbyGame[]; constructor(props: XLobbyPageProps); update({ onGameSearch, searchStatus, gameName }: XLobbyPageProps): void; }