/** * @license * Copyright 2025 Vybestack LLC * SPDX-License-Identifier: Apache-2.0 */ export declare class ConversationFileWriter { private logPath; private currentLogFile; constructor(logPath?: string); private ensureLogDirectory; writeEntry(entry: Record): void; writeRequest(provider: string, messages: unknown[], context?: Record): void; writeResponse(provider: string, response: unknown, metadata?: Record): void; writeToolCall(provider: string, toolName: string, context?: Record): void; } export declare function getConversationFileWriter(logPath?: string): ConversationFileWriter;