import { FormItemProps } from 'antd'; import React from 'react'; type FormLayoutItemProps = FormItemProps & { /** 是否只读(优先级高于全局) */ readOnly?: boolean; /** 占整行的宽度比,最小值为0(不显示),最大值为设置的rowCols */ span?: string | number; }; declare const _default: React.NamedExoticComponent; export default _default;