/// import * as Validation from "@nexys/validation"; import { FormProps, FormUIProps } from "./type"; declare const FormGeneratorWithoutDef: (FormUI: (p: FormUIProps) => JSX.Element, validator?: Validation.Type.Shape | undefined) => ({ onSuccess, isLoading, valueDefault, errors: errorsDefault, }: FormProps) => JSX.Element; export default FormGeneratorWithoutDef;