import React from 'react';
import { BizFormItemProps } from '../FormItem';
import { SuperCheckboxProps } from './SuperCheckbox';
declare const squareIcon: (checked: boolean) => React.JSX.Element;
export interface BizFormItemCheckboxProps extends Omit<BizFormItemProps, 'children'>, Pick<SuperCheckboxProps, 'block' | 'icon' | 'options' | 'fieldNames' | 'spaceProps' | 'checkboxProps' | 'checkboxGroupProps'> {
}
declare const BizFormItemCheckbox: React.FC<BizFormItemCheckboxProps> & {
    /**
     * @description 内置方形选框，便于自定义图标。可以直接传给 `icon` 属性配置。
     */
    squareIcon: typeof squareIcon;
};
export default BizFormItemCheckbox;
