import type { ProFormCheckboxProps } from '@ant-design/pro-form/lib/components/Checkbox'; import type { FC } from 'react'; import type { CreateSuperFormItemProps } from '../createSuperFormItem'; export interface BasicSuperCheckboxProps extends ProFormCheckboxProps { text?: string; } export declare type SuperCheckboxProps = CreateSuperFormItemProps; export declare const SuperCheckbox: FC>>; export default SuperCheckbox;