import React from 'react';
import { FormFieldsProps } from 'uiw';
import { ProFormProps, UseFormStateProps } from './type';
import './style/form-item.css';
declare function FormDom({ formDatas, formfields, formType, onSubmit, onChange, onSubmitError, buttonsContainer, showSaveButton, showResetButton, saveButtonProps, resetButtonProps, formInstanceRef, className, style, }: ProFormProps & {
    formfields: Record<string, FormFieldsProps<{}>> | undefined;
    formInstanceRef: React.MutableRefObject<{
        current: UseFormStateProps | null;
    } | undefined>;
}): JSX.Element;
export default FormDom;
