import { PropsWithChildren } from 'react'; interface Props { title: string; visible: boolean; onClose: () => void; } export default function ROOTModal({ title, visible, onClose, children }: PropsWithChildren): JSX.Element; export {};