UNPKG

@atlaskit/modal-dialog

Version:

A modal dialog displays content that requires user interaction, in a layer above the page.

21 lines (20 loc) 753 B
/** * @jsxRuntime classic * @jsx jsx */ /// <reference types="react" /> 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;