import type { RefObject } from 'react';
import type { FormItemConfig, FormItemProps, RenderControlFn } from './types';
export declare const useFormItem: (props: FormItemProps, config: Omit<FormItemConfig, "component">, controlRef: RefObject<HTMLDivElement>, renderInnerControl: RenderControlFn) => JSX.Element;
