/** * Transcript storage for watch command * * Handles copying JSONL files to transcript storage location. */ /** * Copy a JSONL transcript file to the destination directory * * @param args - Configuration arguments * @param args.sourceFile - Path to the source JSONL file * @param args.destDir - Destination directory for the transcript * @param args.sessionId - Session ID to use as the filename */ export declare const copyTranscript: (args: { sourceFile: string; destDir: string; sessionId: string; }) => Promise; //# sourceMappingURL=storage.d.ts.map