@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
13 lines (12 loc) • 328 B
TypeScript
/**
* Web Modal Component
*
*/
import type { ModalContentProps } from './types';
import type { ModalStackEntry } from './helpers';
declare global {
interface Window {
__modalStack: ModalStackEntry[];
}
}
export default function ModalContent(props: ModalContentProps): import("react/jsx-runtime").JSX.Element;