/// import type { FormItemProps } from 'antd'; import type { NamePath } from 'antd/lib/form/interface'; import type { ProFormInstance } from '../../BaseForm'; declare type RenderChildren = (values: Record, form: ProFormInstance) => React.ReactNode; export type ProFormDependencyProps> = Omit, 'name' | 'noStyle' | 'children' | 'label'> & { name: NamePath[]; originDependencies?: NamePath[]; ignoreFormListField?: boolean; children: RenderChildren; }; declare const ProFormDependency: { ({ name: nameList, originDependencies, children, ignoreFormListField, ...rest }: ProFormDependencyProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default ProFormDependency;