/** * @desc 空白只读表单控件 * @author 智慧能源事业部-蔡利平 */ import React, { HTMLAttributes } from 'react'; type PlainFormItemProps = { value?: any; } & HTMLAttributes; export default function ({ value, className, ...restProps }: PlainFormItemProps): React.JSX.Element; export {};