export type DynamicFormProps = {
    schemaUrl: string;
    uiSchemaUrl: string;
    postUrl: string;
    mutateFormDataBeforePost?: (formData: any) => any;
    onCancel?: () => void;
    onSubmit?: () => void;
};
declare function DynamicForm(props: DynamicFormProps): import("react/jsx-runtime").JSX.Element;
export default DynamicForm;
//# sourceMappingURL=DynamicForm.d.ts.map