/// interface AlertModalProps { text: string; title: string; open: boolean; onClose: () => void; } declare const AlertModal: ({ open, onClose, title, text }: AlertModalProps) => JSX.Element; export default AlertModal;