import { ReactNode } from 'react'; interface TreeModalProps { children?: ReactNode; description?: string; title?: string; open: boolean; onClose?(): void; } declare const MainModal: ({ children, description, open, onClose, title }: TreeModalProps) => import("react/jsx-runtime").JSX.Element; export default MainModal;