import { FunctionComponent } from 'react'; import { DynField, Field as FieldDescription } from '@gecogvidanto/shared'; import { langType } from '../../../../locale'; export interface FieldProps { player: number; field: FieldDescription; titled?: boolean; dynFields: DynField[]; fieldChanged: (field: DynField, previous: unknown) => void; } /** * Component used to display a field of game form. */ declare const Field: FunctionComponent; export default Field;