import { Dialog, DialogTitle, DialogContent, DialogActions, } from '@mui/material'; export default function DeleteClipDialog({ open, onCancel, onDelete, }: { open: boolean; onCancel: () => void; onDelete: () => void; }) { return ( Confirm Delete Are you sure you want to delete this clip? ); }