import { FunctionComponent } from 'react'; export interface PlayersProps { canMasterGame: boolean; } /** * Diplay players panel. When using this component: * - a game must be loaded. */ declare const Players: FunctionComponent; export default Players;