/** * @file form item element * @author chenqiang(chenqiang03) */ import * as React from 'react'; import { FormInstance } from 'rc-field-form'; import { FieldProps } from 'rc-field-form/lib/Field'; import { FormItemLabelProps, LabelTooltipType } from './FormItemLabel'; import { FormItemInputProps } from './FormItemInput'; declare const ValidateStatuses: ["success", "warning", "error", "validating", ""]; export type ValidateStatus = typeof ValidateStatuses[number]; type RenderChildren = (form: FormInstance) => React.ReactNode; type RcFieldProps = Omit, 'children'>; type ChildrenType = RenderChildren | React.ReactNode; export interface FormItemProps extends FormItemLabelProps, FormItemInputProps, RcFieldProps { prefixCls?: string; cols?: number; noStyle?: boolean; style?: React.CSSProperties; className?: string; children?: ChildrenType; id?: string; hasFeedback?: boolean; validateStatus?: ValidateStatus; required?: boolean; hidden?: boolean; initialValue?: any; messageVariables?: Record; tooltip?: LabelTooltipType; keepDisplayExtra?: boolean; /** Auto passed by List render props. User should not use this. */ fieldKey?: React.Key | React.Key[]; } declare function FormItem(props: FormItemProps): React.ReactElement; export default FormItem;