/** * 请在 /packages/pandora-ui/src/index.ts 中导入该组件 */ import React, { CSSProperties } from 'react'; import { type ClassValue } from '../../utils/cx'; import { type SizeType } from '../config-provider'; import { FormProps } from './form'; interface FormItemProps extends Pick { className?: ClassValue; labelClassName?: ClassValue; size?: SizeType; style?: CSSProperties; children?: any; getValues?: any; methods?: any; isError?: boolean; isRequired?: boolean; labelAlign?: 'left' | 'right'; labelWidth?: number | string; description?: React.ReactElement; mode?: 'vertical' | 'horizontal'; errors?: any; tooltip?: string; label?: string | boolean; } declare const FormItemInput: React.FC; export default FormItemInput;