/** * JudgeDisplayComponent — renders the goal judge's decision inline in the chat. */ import { Container } from '@mariozechner/pi-tui'; import type { GoalJudgeResult } from '../goal-manager.js'; export declare class JudgeDisplayComponent extends Container { private result; private turnsUsed; private maxTurns; private activity; constructor(result?: GoalJudgeResult | null, turnsUsed?: number, maxTurns?: number); addActivity(line: string): void; setResult(result: GoalJudgeResult, turnsUsed: number, maxTurns: number): void; setInterrupted(): void; private renderContent; private renderActivityLine; private renderHeader; private renderRow; private wrapLine; private padLine; } //# sourceMappingURL=judge-display.d.ts.map