Version: 5.0.0-alpha.555.0.0-alpha.565.0.0-alpha.575.0.0-alpha.585.0.0-alpha.595.0.0-alpha.605.0.0-alpha.615.0.0-alpha.625.0.0-alpha.635.0.0-alpha.645.0.0-alpha.655.0.0-alpha.665.0.0-alpha.675.0.0-alpha.685.0.0-alpha.695.0.0-alpha.705.0.0-alpha.715.0.0-alpha.725.0.0-alpha.735.0.0-alpha.745.0.0-alpha.755.0.0-alpha.765.0.0-alpha.775.0.0-alpha.785.0.0-alpha.795.0.0-alpha.805.0.0-alpha.815.0.0-alpha.825.0.0-alpha.835.0.0-alpha.845.0.0-alpha.855.0.0-alpha.865.0.0-alpha.875.0.0-alpha.885.0.0-alpha.895.0.0-alpha.905.0.0-alpha.915.0.0-alpha.925.0.0-alpha.935.0.0-alpha.945.0.0-alpha.955.0.0-alpha.965.0.0-alpha.975.0.0-alpha.985.0.0-alpha.995.0.0-alpha.1005.0.0-alpha.1015.0.0-alpha.1025.0.0-alpha.1035.0.0-alpha.1045.0.0-alpha.1055.0.0-alpha.1065.0.0-alpha.1075.0.0-alpha.1085.0.0-alpha.1095.0.0-alpha.1105.0.0-alpha.1115.0.0-alpha.1125.0.0-alpha.1135.0.0-alpha.1145.0.0-alpha.1155.0.0-alpha.1165.0.0-alpha.1175.0.0-alpha.1185.0.0-alpha.1195.0.0-alpha.1205.0.0-alpha.1215.0.0-alpha.1225.0.0-alpha.1235.0.0-alpha.1245.0.0-alpha.1255.0.0-alpha.1265.0.0-alpha.1275.0.0-alpha.1285.0.0-beta.05.0.0-beta.15.0.0-beta.25.0.0-beta.35.0.0-beta.45.0.0-beta.55.0.0-beta.65.0.0-beta.75.0.0-beta.85.0.0-beta.95.0.0-beta.105.0.0-beta.115.0.0-beta.125.0.0-beta.135.0.0-beta.145.0.0-beta.155.0.0-beta.165.0.0-beta.175.0.0-beta.185.0.0-beta.195.0.0-beta.205.0.0-beta.215.0.0-beta.225.0.0-beta.235.0.0-beta.24
import { PolymorphicComponent } from '../utils/PolymorphicComponent';
import { ModalTypeMap } from './Modal.types';
/**
* Modal is a lower-level construct that is leveraged by the following components:
*
* * [Dialog](https://mui.com/material-ui/api/dialog/)
* * [Drawer](https://mui.com/material-ui/api/drawer/)
* * [Menu](https://mui.com/material-ui/api/menu/)
* * [Popover](https://mui.com/material-ui/api/popover/)
* If you are creating a modal dialog, you probably want to use the [Dialog](https://mui.com/material-ui/api/dialog/) component
* rather than directly using Modal.
* This component shares many concepts with [react-overlays](https://react-bootstrap.github.io/react-overlays/#modals).
* Demos:
* - [Modal](https://mui.com/base/react-modal/)
* API:
* - [Modal API](https://mui.com/base/react-modal/components-api/#modal)
*/
declare const Modal: PolymorphicComponent<ModalTypeMap<{}, "div">>;
export default Modal;