import React from 'react'; import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle } from "@/components/ui/alert-dialog"; interface DeleteMessageDialogProps { isOpen: boolean; onOpenChange: (open: boolean) => void; onDelete: () => void; } export const DeleteMessageDialog: React.FC = ({ isOpen, onOpenChange, onDelete }) => { return ( Delete Message Are you sure you want to delete this message? This action cannot be undone. Cancel Delete ); };