import { FunctionComponent } from 'react'; export interface NewGameStatsProps { playerCount: number; } /** * @returns Statistics about a new game being created. */ declare const NewGameStats: FunctionComponent; export default NewGameStats;