import type { ComponentType, Key } from 'react'; import type { WithDependencyProps } from './hoc/withDependency'; import type { WithFormItemConfigType } from './hoc/withFormItem'; import type { WithFormItemProps } from './hoc/withFormItemTypes'; import type { WithOptionsConfigType, WithOptionsProps } from './hoc/withOptions'; export declare type CreateSuperFormItemProps = WithDependencyProps>; export declare function createSuperFormItem = any>(Component: ComponentType, config?: WithFormItemConfigType): import("react").FC>>; export declare type CreateSuperFormItemWithOptionsProps = WithDependencyProps>>; export declare function createSuperFormItemWithOptions = any>(Component: ComponentType, config?: WithFormItemConfigType & WithOptionsConfigType): import("react").FC>>>;