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