/// <reference types="react" />
import type { ProFormProps } from '@ant-design/pro-form';
import { BaseInnerRef } from '../context';
type ProFormType = Omit<ProFormProps, 'onFinish' | 'submitter'> & {
    children?: React.ReactNode | React.ReactNode[];
    innerRef?: BaseInnerRef;
    /**
     * @description 表单提交时的回调;
     */
    onFinish?: (values: any) => Promise<boolean | void> | void;
    submitter?: boolean | ProFormProps['submitter'];
};
export declare const InnerRefContext: import("react").Context<BaseInnerRef | undefined>;
export declare const ReadonlyContext: import("react").Context<boolean>;
export declare const EmbedColumnContext: import("react").Context<any>;
declare const ProForm: (props: ProFormType) => import("react/jsx-runtime").JSX.Element;
export default ProForm;
