///
import * as MUI from '@material-ui/core';
import { OmitBannedProps } from '@monorail/v2/shared/helpers';
declare type ModalPaperProps = OmitBannedProps & Pick;
export declare type ModalProps = OmitBannedProps> & {
/**
* The ARIA role for the content container
*/
role?: 'dialog' | 'alertdialog';
PaperProps?: Partial;
TransitionProps?: Partial & {
role: string | null;
}>;
};
/**
* Modal dialog
*
* - [Dialog | Material-UI](https://material-ui.com/components/dialogs/#dialog)
* - [Modals | Monorail Figma](https://www.figma.com/file/dKL9YeHgWyxmRHuIjs38f3O9/Monorail-Components?node-id=2133%3A64)
*/
export declare function Modal({ role, title, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, PaperProps, TransitionProps, ...props }: ModalProps): JSX.Element;
export {};