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