/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 */ import { EuiConfirmModal } from '@elastic/eui'; import React from 'react'; export interface DeleteRuleModalProps { title: string; onCancel: () => void; onConfirm: () => void; } export const DeleteCorrelationRuleModal: React.FC = ({ title, onCancel, onConfirm, }) => { return (

Delete the correlation rule permanently? This action cannot be undone.

); };