import type { AgentSessionReadResult } from "@termfleet/core/internal/agent-session-tail.js"; import type { ManagedRuntime, SupercodeHarnessClient } from "@volter-ai-dev/supercode-harness-sdk"; export declare class HarnessTranscript { private readonly controller; private readonly cwd; private cached; private visibleRevision; private constructor(); static observe(client: SupercodeHarnessClient, runtime: ManagedRuntime, cwd: string): Promise; close(): Promise; recordAcceptedInput(text: string): Promise; read(agentSessionId: string): AgentSessionReadResult; }