import { BoxProps } from '@mui/material'; export type DialogFormProps = Omit, "component">; /** * Form wrapper for a Dialog's children: restores the Paper's flex column that a plain
* breaks. Without it the whole paper scrolls (title and close button included) instead of the * DialogContent, and the actions bar leaves the viewport. * Use it whenever a form element must sit between the Dialog and its DialogContent/DialogActions * (e.g. form libraries owning the submit). */ declare const DialogForm: ({ sx, ...props }: DialogFormProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default DialogForm;