/// <reference types="react" />
import { ICheckboxProps } from '../../checkbox';
import { IFormComponentProps } from '../shared';
export declare type IFormCheckboxFieldProps<Value> = IFormComponentProps<boolean, Omit<ICheckboxProps<Value>, 'checked'>>;
export declare function FormCheckboxField<Value>(props: IFormCheckboxFieldProps<Value>): JSX.Element;
