import { type FC } from 'react' import { Button } from '@/components/ui/button' import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle } from '@/components/ui/dialog' interface DeleteSessionModalProps { isOpen: boolean onClose: () => void onDelete: () => Promise isDeleting: boolean } const DeleteSessionModal: FC = ({ isOpen, onClose, onDelete, isDeleting }) => ( Confirm deletion This will permanently delete the session. This action cannot be undone. ) export default DeleteSessionModal