/** * Interactive TUI for reviewing and approving architectural decisions * at pre-commit time. Uses readline raw mode — no additional dependencies. * * Only activated when stdout is a TTY. Falls back to plain text otherwise. */ import type { PendingDecision } from '../types/index.js'; type Decision = 'approved' | 'rejected' | 'skipped'; export declare function runTuiApproval(decisions: PendingDecision[]): Promise>; export {}; //# sourceMappingURL=tui-approval.d.ts.map