import { FunctionComponent } from 'react'; export interface SummaryProps { readOnly: boolean; } /** * The summary of the game. Should be called if game.summary || !readOnly. */ declare const Summary: FunctionComponent; export default Summary;