/* * 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 DeleteRuleModal: React.FC = ({ title, onCancel, onConfirm }) => { return (

Delete the rule permanently? This action cannot be undone.

); };