import { ModalProps } from "../../widgets/Modal"; import { FormBaseProps } from "./types"; import { SxProps, Theme, DialogContentProps } from "@mui/material"; declare type FormModalProps = ModalProps> & { title: string; sx?: SxProps; DialogContentProps?: DialogContentProps; }; declare function FormModal({ onClose, title, formModel, onFinish, initialValue, formButton, validationSchema, form, sx, DialogContentProps, }: FormModalProps): JSX.Element; export default FormModal;