/**
 * 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;
