export interface PromptLogRecord { step: string; phase: 1 | 2 | 3; iteration: number; scope: string; phaseExecutionId: string; prompt: string; systemPrompt: string; userInstruction: string; response: string; timestamp: string; } export declare function writePromptLog(promptLogPath: string, record: PromptLogRecord): void; //# sourceMappingURL=promptLog.d.ts.map