import { FunctionComponent } from 'react'; import { DynField, Field as FieldDescription } from '@gecogvidanto/shared'; import { langType } from '../../../../locale'; export interface LinkedFieldsProps { dynFields: DynField[]; player: number; fields: ReadonlyArray>; onFieldChange: (field: DynField, previous: unknown) => void; } /** * Linked fields in a form. */ declare const LinkedFields: FunctionComponent; export default LinkedFields;