import React from 'react'; /** * Modal component that displays data and queries tabs. * @param props - Component props. * @param props.visible - Determines if the modal is visible. * @param props.onClose - Function to call when the modal is closed. * @returns The rendered modal component. */ declare const Modal: React.FC<{ visible: boolean; onClose: () => void; }>; export default Modal;