/// interface ICheckboxItem { label: any; value: any; } interface IFormCheckboxProps { field: string; form: any; className: string; initialValue: any; readOnly: boolean; options: Array; render: any; label: any; labelCol: any; wrapperCol: any; } declare const FormCheckbox: (props: IFormCheckboxProps) => JSX.Element; export default FormCheckbox;