import { FunctionComponent } from 'react'; import { DynField, FormPart, InitFunction, UpdateFunction } from '@gecogvidanto/shared'; import { langType } from '../../../../locale'; export interface PlayerPartProps { dynFields: DynField[]; part: FormPart; optional: boolean; panelClassName: string; updateForm: (InitFunction & UpdateFunction) | undefined; } /** * A part of a game form. */ declare const PlayerPart: FunctionComponent; export default PlayerPart;