import { FunctionComponent } from 'react'; export interface ActionsProps { canMasterGame: boolean; onGoingGame: boolean; } /** * Display the actions. Should only be called if onGoingGame || canMasterGame. */ declare const Actions: FunctionComponent; export default Actions;