import { FunctionComponent } from 'react'; import { UnassembledMessages } from '@gecogvidanto/shared'; import { langType } from '../../../../locale'; export interface BooleanFieldProps { outerClasses: { [key: string]: boolean; }; innerClasses: { [key: string]: boolean; }; identifier: string; titled: boolean; disabled: boolean; help: UnassembledMessages[keyof langType]; content: boolean; onValueChange: (value: boolean) => void; } /** * Component used to display a field of game form. */ declare const BooleanField: FunctionComponent; export default BooleanField;