/// import type { NamePath } from 'antd/lib/form/interface'; import type { FormInstance, FormItemProps } from 'antd'; declare type RenderChildren = (values: Record, form: FormInstance) => React.ReactNode; export declare type ProFormDependencyProps = Omit, 'name' | 'noStyle' | 'children' | 'label'> & { name: NamePath[]; ignoreFormListField?: boolean; children: RenderChildren; }; declare const ProFormDependency: React.FC; export default ProFormDependency;