import React, { PropsWithoutRef } from 'react'; import type { ProFormProps } from '@ant-design/pro-form'; export interface BaseFormProps extends ProFormProps, PropsWithoutRef { layout?: 'horizontal' | 'vertical' | 'inline'; items: { [key: string]: any; }[]; values: { [key: string]: any; }; rowCol?: number; setFooter?: boolean; submitTargetId?: Element | string; globalFixedSubmit?: boolean; onValuesChange?: (changedValues: any, value: any) => void; onSubmit?: (formData: Record) => Promise; onReset?: () => void; } declare const BaseForm: React.FC; export default BaseForm;