@atlaskit/modal-dialog
Version:
A modal dialog displays content that requires user interaction, in a layer above the page.
20 lines (19 loc) • 721 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import type { ModalDialogProps } from '../../types';
import type { InternalModalWrapperProps } from '../types';
export type { ModalDialogProps };
/**
* __Modal wrapper__
*
* A modal wrapper displays content that requires user interaction, in a layer above the page.
* This component is primary container for other modal components.
*
* - [Examples](https://atlassian.design/components/modal-dialog/examples)
* - [Code](https://atlassian.design/components/modal-dialog/code)
* - [Usage](https://atlassian.design/components/modal-dialog/usage)
*/
declare const InternalModalWrapper: (props: InternalModalWrapperProps) => JSX.Element;
export default InternalModalWrapper;