UNPKG

@atlaskit/modal-dialog

Version:

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

10 lines (9 loc) 380 B
/** * @jsxRuntime classic * @jsx jsx */ import type { ModalDialogProps } from '../../types'; import type { InternalModalWrapperProps } from '../types'; export type { ModalDialogProps }; declare const InternalModalWrapper: React.ForwardRefExoticComponent<React.PropsWithoutRef<InternalModalWrapperProps> & React.RefAttributes<HTMLElement>>; export default InternalModalWrapper;