import type { ComponentType, FC } from 'react'; import type { WithFormItemProps } from './withFormItemTypes'; export interface WithFormItemConfigType { placeholderPrefix?: string; needData?: boolean; } export declare function withFormItem

(FormItemComponent: ComponentType

, config: WithFormItemConfigType): FC>;