/// import "antd/dist/antd.less"; import './index.less'; declare type ComponentProps = { title?: string; className?: string; api?: string; formId: string; schema?: string; formData?: string; formDataId?: string; displayField?: string[] | undefined; formDataRequestUrl?: string; saveFormUrl?: string; readPretty?: boolean; showSubmitBtn?: boolean; onInit?: (instance: any, form: any) => void; }; export default function ReactFormRender(props: ComponentProps): JSX.Element; export {};