import { TextAreaProps } from 'antd/es/input'; import React from 'react'; import { ProFormOtherProps } from '../../../propsType'; import './index.less'; export interface Props extends TextAreaProps { otherProps?: ProFormOtherProps; isView?: boolean; } declare const TextAreaDef: React.FC; export default TextAreaDef;