import React from 'react'; import type { InputProps } from 'antd'; import type { PasswordProps } from 'antd/lib/input'; import type { ProFormFieldItemProps } from '../../interface'; /** * 文本组件 * * @param */ declare const ProFormText: React.FC>; declare const Password: React.FC>; declare const WrappedProFormText: typeof ProFormText & { Password: typeof Password; }; export default WrappedProFormText;