import type { FormInstance } from '@ant-design/pro-form'; import type { FC, Key } from 'react'; import React from 'react'; export interface InjectedDependencyProps { data: Record; form: FormInstance; } export interface NewDependencyProps { linkageFields?: string | string[]; } export declare type WithDependencyProps = Omit & NewDependencyProps; export declare function withDependency

(FormItemComponent: React.ComponentType

): FC>;