import { BaseModal } from "./base-modal"; interface DangerModalProps { testId?: string; title: string; description: string; buttons: { danger: { text: string; onClick: () => void }; cancel: { text: string; onClick: () => void }; }; } export function DangerModal({ testId, title, description, buttons, }: DangerModalProps) { return ( ); }