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