import { useT } from "@agent-native/core/client/i18n"; import { type ReactNode } from "react"; import { AlertDialog, type AlertDialogProps, } from "@/components/shared/AlertDialog"; type DeleteItemDialogProps = Omit & { entityLabel: string; itemTitle: string | null; description?: ReactNode; }; export function DeleteItemDialog({ open, onOpenChange, entityLabel, itemTitle, description, pending, onConfirm, }: DeleteItemDialogProps) { const t = useT(); return ( ); }