import { Box, Text } from 'ink'; import type { Theme } from '../theme'; interface Props { theme: Theme; } /** * Confirmation prompt shown after a remediation command exits 0. * The TUI's input handler watches for Y/Enter (yes) and n/Esc (no); * this component is purely presentational. */ export function ReauditPromptModal({ theme }: Props) { return ( Audit may be stale Re-run audit now? Yes: Y/Enter ยท No: n/Esc ); }