import { Button } from "./ui/button.js"; import { Dialog } from "./ui/dialog.js"; interface ImportConfirmDialogProps { open: boolean; onConfirm: () => void; onCancel: () => void; } export function ImportConfirmDialog({ open, onConfirm, onCancel, }: Readonly) { return (

Replace current encounter?

Importing will replace your current encounter, undo/redo history, and player characters. This cannot be undone.

); }