/** * SystemReminderComponent - renders system-generated reminder messages * inline with an amber notice style. */ import type { ChatSpacingKind } from './chat-spacing.js'; import { WidthAwareContainer } from './width-aware-container.js'; export interface SystemReminderOptions { message?: string; reminderType?: string; path?: string; goalMaxTurns?: number; judgeModelId?: string; } export declare class SystemReminderComponent extends WidthAwareContainer { 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; protected rebuildForWidth(termWidth: number): void; } //# sourceMappingURL=system-reminder.d.ts.map