import React from 'react'; import type { ProFieldCheckboxProps } from '../../../pro-field/pro-field-checkbox'; import type { ProFormItemField } from '../../interface'; export interface ProFormItemCheckboxProps extends ProFormItemField { disabled?: boolean; fieldProps?: ProFieldCheckboxProps; options?: ProFieldCheckboxProps['options']; request?: ProFieldCheckboxProps['request']; } declare const ProFormItemCheckbox: React.FC; export default ProFormItemCheckbox;