import { FunctionComponent } from 'react'; export interface PlayerListProps { canDelete?: boolean; } /** * The list of the players. When this component is used: * - a provider must make the play reducer available. */ declare const PlayerList: FunctionComponent; export default PlayerList;