/** * SystemReminderComponent - renders system-generated reminder messages * inline with an amber notice style. */ import { Container } from '@mariozechner/pi-tui'; import type { ChatSpacingKind } from './chat-spacing.js'; export interface SystemReminderOptions { message?: string; reminderType?: string; path?: string; goalMaxTurns?: number; judgeModelId?: string; } export declare class SystemReminderComponent extends Container { private messageLines; private readonly reminderType?; private readonly path?; private readonly goalMaxTurns?; private readonly judgeModelId?; private expanded; isExpanded(): boolean; constructor(options: SystemReminderOptions); setExpanded(expanded: boolean): void; toggleExpanded(): void; getChatSpacingKind(): ChatSpacingKind; private rebuild; } //# sourceMappingURL=system-reminder.d.ts.map