import { FunctionComponent } from 'react'; import { RoundSet } from '@gecogvidanto/shared'; export interface RoundSetDetailsProps { roundSet: { roundSet: RoundSet; index: number; }; } /** * Display the round set details. When this component is used: * - a game must be loaded. */ declare const RoundSetDetails: FunctionComponent; export default RoundSetDetails;