import React from 'react';
type ModalProps = {
    show: boolean;
    onClose: () => void;
    children: React.ReactNode;
};
export default function Modal({ show, onClose, children }: ModalProps): React.ReactPortal | null;
export {};
