import type { PropsWithChildren } from 'react';
import React from 'react';
import type { ModalProps } from './Modal';
export declare const GlobalModal: ({ children, className, onClose, onCloseAttempt, open, }: PropsWithChildren<ModalProps>) => React.JSX.Element | null;
