interface ConfirmDialogProps { title: string; description: string; confirmLabel?: string; cancelLabel?: string; onConfirm: () => void; onCancel: () => void; destructive?: boolean; } export function ConfirmDialog({ title, description, confirmLabel = 'Confirm', cancelLabel = 'Cancel', onConfirm, onCancel, destructive = false, }: ConfirmDialogProps): JSX.Element { return (
); }